Proven Expertise
Our team brings years of experience in the digital payments industry to provide reliable services.
<?php $__env->startPush('css'); ?>
<?php $__env->stopPush(); ?>
<?php $__env->startSection('breadcrumb'); ?>
<?php echo $__env->make('user.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("user.dashboard"),
]
], 'active' => __($page_title)], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="body-wrapper">
<div class="row mb-20-none">
<div class="col-xl-6 col-lg-6 mb-20">
<div class="custom-card mt-10">
<div class="dashboard-header-wrapper">
<div class="header-title">
<h4 class="title"><?php echo e(__("Profile Settings")); ?></h4>
</div>
<div class="account-delate">
<button class="btn--base btn delete-btn" data-bs-toggle="modal" data-bs-target="#deleteModal"><?php echo e(__("Delete Account")); ?></button>
</div>
</div>
<div class="card-body profile-body-wrapper">
<form class="card-form" method="POST" action="<?php echo e(setRoute('user.profile.update')); ?>" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<?php echo method_field("PUT"); ?>
<div class="profile-settings-wrapper">
<div class="preview-thumb profile-wallpaper">
<div class="avatar-preview">
<div class="profilePicPreview bg_img" data-background="<?php echo e(asset('public/frontend/images/element')); ?>/profile-thumb.webp"></div>
</div>
</div>
<div class="profile-thumb-content">
<div class="preview-thumb profile-thumb">
<div class="avatar-preview">
<div class="profilePicPreview bg_img" data-background="<?php echo e(auth()->user()->userImage ?? asset('public/frontend/images/user/user-1.png')); ?>"></div>
</div>
<div class="avatar-edit">
<input type='file' class="profilePicUpload" name="image" id="profilePicUpload2"
accept=".png, .jpg, .jpeg">
<label for="profilePicUpload2"><i class="las la-upload"></i></label>
</div>
</div>
<div class="profile-content">
<h6 class="username"><?php echo e(auth()->user()->username); ?></h6>
<ul class="user-info-list mt-md-2">
<li><i class="las la-envelope"></i><?php echo e(auth()->user()->email); ?></li>
</ul>
</div>
</div>
</div>
<div class="profile-form-area">
<div class="row">
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("First Name")."<span>*</span>",
'name' => "firstname",
'placeholder' => __("Enter First Name")."...",
'value' => old('firstname',auth()->user()->firstname)
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Last Name")."<span>*</span>",
'name' => "lastname",
'placeholder' => __("Enter Last Name")."...",
'value' => old('lastname',auth()->user()->lastname)
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<label><?php echo e(__("Country")); ?></label>
<select class="form--control select2-auto-tokenize country-select" data-placeholder="<?php echo e(__("Select Country")); ?>" data-old="<?php echo e(old('country',auth()->user()->address->country ?? "")); ?>" name="country"></select>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Phone"),
'name' => "phone",
'type' => "number",
'placeholder' => __("Enter Number")."...",
'value' => old('full_mobile',auth()->user()->full_mobile ?? "" )
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Address"),
'name' => "address",
'placeholder' => __("Enter Address")."...",
'value' => old('address',auth()->user()->address->address ?? "")
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("City"),
'name' => "city",
'placeholder' => __("Enter City")."...",
'value' => old('city',auth()->user()->address->city ?? "")
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("State"),
'name' => "state",
'placeholder' => __("Enter State")."...",
'value' => old('state',auth()->user()->address->state ?? "")
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Zip Code"),
'name' => "zip_code",
'placeholder' => __("Enter Zip")."...",
'value' => old('zip_code',auth()->user()->address->zip ?? "")
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
<div class="col-xl-12 col-lg-12">
<button type="submit" class="btn--base w-100"><span class="w-100"><?php echo e(__("Update")); ?></span></button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-6 mb-20">
<div class="custom-card mt-10">
<div class="dashboard-header-wrapper">
<h4 class="title"><?php echo e(__("Change Password")); ?></h4>
</div>
<div class="card-body">
<form class="card-form" action="<?php echo e(setRoute('user.profile.password.update')); ?>" method="POST">
<?php echo csrf_field(); ?>
<?php echo method_field("PUT"); ?>
<div class="row">
<div class="col-xl-12 col-lg-12 form-group show_hide_password">
<label><?php echo e(__("Current Password")); ?><span>*</span></label>
<input type="password" class="form--control" name="current_password" placeholder="<?php echo e(__("Enter Password")); ?>...">
<span class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></span>
</div>
<div class="col-xl-12 col-lg-12 form-group show_hide_password">
<label><?php echo e(__("New Password")); ?><span>*</span></label>
<input type="password" class="form--control" name="password" placeholder="<?php echo e(__("Enter Password")); ?>...">
<span class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></span>
</div>
<div class="col-xl-12 col-lg-12 form-group show_hide_password">
<label><?php echo e(__("Confirm Password")); ?><span>*</span></label>
<input type="password" class="form--control" name="password_confirmation" placeholder="<?php echo e(__("Enter Password")); ?>...">
<span class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></span>
</div>
</div>
<div class="col-xl-12 col-lg-12">
<button type="submit" class="btn--base w-100"><span class="w-100"><?php echo e(__("Change")); ?></span></button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Start Modal
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<div class="modal fade" id="deleteModal" tabindex="-1" aria-labelledby="deleteModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" id="deleteModalLabel">
<h5 class="modal-title"><?php echo e(__("Are you sure to delete your account?")); ?></h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p><?php echo e(__("If you do not think you will use")); ?> <span class="text--base"><?php echo e($basic_settings->site_name); ?></span> <?php echo e(__("again and like your account deleted. Keep in mind you will not be able to reactivate your account or retrieve any of the content or information you have added. If you would still like your account deleted, click “Delete Account”.?")); ?></p>
</div>
<div class="modal-footer">
<button type="submit" class="btn--base bg--danger border--danger text-white"><?php echo e(__("Close")); ?></button>
<form action="<?php echo e(setRoute('user.profile.delete',auth()->user()->id)); ?>" method="POST">
<?php echo csrf_field(); ?>
<button type="submit" class="btn--base"><?php echo e(__("Confirm")); ?></button>
</form>
</div>
</div>
</div>
</div>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
End Modal
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<?php $__env->stopSection(); ?>
<?php $__env->startPush('script'); ?>
<script>
getAllCountries("<?php echo e(setRoute('global.countries')); ?>",$(".country-select"));
$(document).ready(function(){
$(".country-select").select2();
$("select[name=country]").change(function(){
var phoneCode = $("select[name=country] :selected").attr("data-mobile-code");
placePhoneCode(phoneCode);
});
setTimeout(() => {
var phoneCodeOnload = $("select[name=country] :selected").attr("data-mobile-code");
placePhoneCode(phoneCodeOnload);
}, 400);
});
</script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('user.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\xampp\htdocs\git\nfcpay\resources\views/user/sections/profile/index.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!