Proven Expertise
Our team brings years of experience in the digital payments industry to provide reliable services.
<div class="sidebar">
<div class="sidebar-inner">
<div class="sidebar-inner-wrapper">
<div class="sidebar-logo">
<a href="<?php echo e(setRoute('frontend.index')); ?>" class="sidebar-main-logo">
<img src="<?php echo e(get_logo($basic_settings)); ?>" data-white_img="<?php echo e(asset($basic_settings)); ?>"
data-dark_img="<?php echo e(get_logo($basic_settings,"dark")); ?>" alt="logo">
</a>
<button class="sidebar-menu-bar">
<i class="fas fa-exchange-alt"></i>
</button>
</div>
<?php
$current_url = URL::current();
?>
<div class="sidebar-menu-wrapper">
<ul class="sidebar-menu">
<li class="sidebar-menu-item <?php echo e(menuActive('user.dashboard')); ?>">
<a href="<?php echo e(setRoute('user.dashboard')); ?>">
<i class="menu-icon las la-palette"></i>
<span class="menu-title"><?php echo e(__("Dashboard")); ?></span>
</a>
</li>
<li class="sidebar-menu-item <?php echo e(menuActive('user.add.money.index')); ?>">
<a href="<?php echo e(setRoute('user.add.money.index')); ?>">
<i class="menu-icon las la-plus-square"></i>
<span class="menu-title"><?php echo e(__("Add Money")); ?></span>
</a>
</li>
<li class="sidebar-menu-item <?php echo e(menuActive('user.transfer.money.index')); ?>">
<a href="<?php echo e(setRoute('user.transfer.money.index')); ?>">
<i class="menu-icon las la-fax"></i>
<span class="menu-title"><?php echo e(__("Transfer Money")); ?></span>
</a>
</li>
<li class="sidebar-menu-item <?php echo e(menuActive('user.merchant.details.index')); ?>">
<a href="<?php echo e(setRoute('user.merchant.details.index')); ?>">
<i class="menu-icon las la-plus-square"></i>
<span class="menu-title"><?php echo e(__("Merchant Details")); ?></span>
</a>
</li>
<li class="sidebar-menu-item <?php echo e(menuActive('user.card.index')); ?>">
<a href="<?php echo e(setRoute('user.card.index')); ?>">
<i class="menu-icon las la-paper-plane"></i>
<span class="menu-title"><?php echo e(__("Save Cards")); ?></span>
</a>
</li>
<li class="sidebar-menu-item sidebar-dropdown <?php echo e(menuActive([
'user.transaction.log.add.money',
'user.transaction.log.transfer.money',
'user.transaction.log.card.payment'
])); ?>">
<a href="javascript:void(0)">
<i class="menu-icon las la-calendar-check"></i>
<span class="menu-title"><?php echo e(__("Transaction Log")); ?></span>
</a>
<ul class="sidebar-submenu">
<li class="sidebar-menu-item">
<a href="<?php echo e(setRoute('user.transaction.log.add.money')); ?>" class="nav-link <?php echo e(menuActive('user.transaction.log.add.money')); ?>">
<i class="menu-icon las la-ellipsis-h"></i>
<span class="menu-title"><?php echo e(__("Add Money Log")); ?></span>
</a>
<a href="<?php echo e(setRoute('user.transaction.log.transfer.money')); ?>" class="nav-link <?php echo e(menuActive('user.transaction.log.transfer.money')); ?>">
<i class="menu-icon las la-ellipsis-h"></i>
<span class="menu-title"><?php echo e(__("Transfer Money Log")); ?></span>
</a>
<a href="<?php echo e(setRoute('user.transaction.log.card.payment')); ?>" class="nav-link <?php echo e(menuActive('user.transaction.log.card.payment')); ?>">
<i class="menu-icon las la-ellipsis-h"></i>
<span class="menu-title"><?php echo e(__("Payment Log")); ?></span>
</a>
</li>
</ul>
</li>
<li class="sidebar-menu-item <?php echo e(menuActive('user.kyc.index')); ?>">
<a href="<?php echo e(setRoute('user.kyc.index')); ?>">
<i class="menu-icon las la-user-shield"></i>
<span class="menu-title"><?php echo e(__("KYC Verification")); ?></span>
</a>
</li>
<li class="sidebar-menu-item <?php echo e(menuActive('user.security.google.2fa')); ?>">
<a href="<?php echo e(setRoute('user.security.google.2fa')); ?>">
<i class="menu-icon las la-lock-open"></i>
<span class="menu-title"><?php echo e(__("2FA Security")); ?></span>
</a>
</li>
<li class="sidebar-menu-item">
<a href="javascript:void(0)" class="logout-btn">
<i class="menu-icon las la-sign-out-alt"></i>
<span class="menu-title"><?php echo e(__("Logout")); ?></span>
</a>
</li>
</ul>
</div>
</div>
<div class="sidebar-doc-box bg_img" data-background="<?php echo e(asset('public/frontend')); ?>/images/element/sidebar.webp">
<div class="sidebar-doc-icon">
<i class="las la-headset"></i>
</div>
<div class="sidebar-doc-content">
<h4 class="title"><?php echo e(__("Help Center")); ?></h4>
<p><?php echo e(__("How can we help you?")); ?></p>
<div class="sidebar-doc-btn">
<a href="<?php echo e(setRoute('user.support.ticket.index')); ?>" class="btn--base w-100"><?php echo e(__("Get Support")); ?></a>
</div>
</div>
</div>
</div>
</div>
<?php $__env->startPush('script'); ?>
<script>
$(".logout-btn").click(function(){
var actionRoute = "<?php echo e(setRoute('user.logout')); ?>";
var target = 1;
var message = `<?php echo e(__("Are you sure to")); ?> <strong><?php echo e(__("Logout")); ?></strong>?`;
openAlertModal(actionRoute,target,message,"<?php echo e(__('Logout')); ?>","POST");
/**
* Function for open delete modal with method DELETE
* @param {string} URL
* @param {string} target
* @param {string} message
* @returns
*/
function openAlertModal(URL,target,message,actionBtnText = "<?php echo e(__('Remove')); ?>",method = "DELETE"){
if(URL == "" || target == "") {
return false;
}
if(message == "") {
message = "Are you sure to delete ?";
}
var method = `<input type="hidden" name="_method" value="${method}">`;
openModalByContent(
{
content: `<div class="card modal-alert border-0">
<div class="card-body">
<form method="POST" action="${URL}">
<input type="hidden" name="_token" value="${laravelCsrf()}">
${method}
<div class="head mb-3">
${message}
<input type="hidden" name="target" value="${target}">
</div>
<div class="foot d-flex align-items-center justify-content-between">
<button type="button" class="modal-close btn--base btn-for-modal"><?php echo e(__("Close")); ?></button>
<button type="submit" class="alert-submit-btn btn--base bg-danger btn-loading btn-for-modal">${actionBtnText}</button>
</div>
</form>
</div>
</div>`,
},
);
}
});
</script>
<?php $__env->stopPush(); ?><?php /**PATH D:\xampp\htdocs\git\nfcpay\resources\views/user/partials/side-nav.blade.php ENDPATH**/ ?>
How it Works
Getting started with NFC Pay is simple and quick. Register your account, add your cards, and you're ready to make payments in no time. Whether you're paying at a store, sending money to a friend, or managing your merchant transactions, NFC Pay makes it easy and secure.
Download the NFC Pay app and sign up with your email or phone number. Complete the registration process by verifying your identity, and set up your secure PIN to protect your account.
Link your debit or credit cards to your NFC Pay wallet. Simply scan your card or enter the details manually, and you’re set to load funds, shop, and pay with ease.
To pay, simply tap your phone or scan the QR code at checkout. You can also transfer money to other users with a few taps. Enjoy fast, contactless payments with top-notch security.
Security System
NFC Pay prioritizes your security with advanced features that safeguard every transaction. From SMS or email verification to end-to-end encryption, we've implemented robust measures to ensure your data is always protected. Our security systems are designed to prevent unauthorized access and provide you with a safe and reliable payment experience.
Receive instant alerts for every transaction to keep track of your account activities.
Verify your identity through our Know Your Customer process to prevent fraud and enhance security.
Dramatically supply transparent backward deliverables before caward comp internal or "organic" sources.
All your data and transactions are encrypted, ensuring that your sensitive information remains private.
Monitor unusual activity patterns to detect and prevent suspicious behavior in real-time.
Why Choice Us
With NFC Pay, you get a trusted platform backed by proven expertise and a commitment to quality. We put our customers first, offering innovative solutions tailored to your needs, ensuring every transaction is secure, swift, and seamless.
Our team brings years of experience in the digital payments industry to provide reliable services.
We prioritize excellence, ensuring that every aspect of our platform meets the highest standards.
Your needs drive our solutions, and we are dedicated to delivering a superior user experience.
We continuously evolve, integrating the latest technologies to enhance your payment experience.
Testimonial Section
Hear from our users who trust NFC Pay for their everyday transactions. Our commitment to security, ease of use, and exceptional service shines through in their experiences. See why our clients choose NFC Pay for their payment needs and how it has transformed the way they manage their finances.
App Section
Unlock the full potential of NFC Pay by downloading our app, designed to bring secure, swift, and smart transactions to your fingertips. Whether you're paying at a store, transferring money to friends, or managing your business payments, the NFC Pay app makes it effortless. Available on both iOS and Android, it's your all-in-one solution for convenient and reliable digital payments. Download now and experience the future of payments!