<?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-7 col-lg-7 mb-20">
<div class="custom-card mt-10">
<div class="dashboard-header-wrapper">
<h4 class="title"><?php echo e(__($page_title)); ?></h4>
</div>
<div class="card-body">
<form class="card-form" action="<?php echo e(setRoute('user.transfer.money.confirm')); ?>" method="POST">
<?php echo csrf_field(); ?>
<div class="row">
<div class="col-xl-12 col-lg-12 form-group currency-input">
<label><?php echo e(__("Transfer Amount")); ?><span>*</span></label>
<input type="text" class="form--control number-input amount" name="amount" placeholder="<?php echo e(__("Enter Amount")); ?>...">
<div class="my-currency">
<span><?php echo e(get_default_currency_code()); ?></span>
</div>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<div class="note-area">
<code class="d-block"><?php echo e(__("Limit")); ?> : <?php echo e(get_amount(@$transaction_settings->min_limit)); ?> - <?php echo e(get_amount(@$transaction_settings->max_limit)); ?> <?php echo e(get_default_currency_code()); ?></code>
</div>
</div>
<div class="col-xl-12 form-group">
<label><?php echo e(__("Receiver")); ?><span>*</span></label>
<input type="text" class="form--control email" name="email" placeholder="<?php echo e(__("Email Address")); ?>...">
<label class="exist text-start"></label>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<label><?php echo e(__("Remarks")); ?> <span>(<?php echo e(__("Optional")); ?>)</span></label>
<textarea class="form--control" name="remark" placeholder="<?php echo e(__("Explain Request Purposes Here")); ?>…"></textarea>
</div>
</div>
<div class="col-xl-12 col-lg-12">
<button type="submit" class="btn--base w-100 confirm"><?php echo e(__("Confirm")); ?></button>
</div>
</form>
</div>
</div>
</div>
<div class="col-xl-5 col-lg-5 mb-20">
<div class="custom-card mt-10">
<div class="dashboard-header-wrapper">
<h4 class="title"><?php echo e(__("Summary")); ?></h4>
</div>
<div class="card-body">
<div class="preview-list-wrapper">
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-receipt"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Sending Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="text--success sending-amount"></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-battery-half"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Total Fees & Charges")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="text--warning total-charge"></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="lab la-get-pocket"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Will Get Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="text--danger will-get-amount"></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-money-check-alt"></i>
</div>
<div class="preview-list-user-content">
<span class="last"><?php echo e(__("Total Payable Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="text--info last payable-amount"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="dashboard-list-area mt-60 mb-30">
<div class="dashboard-header-wrapper">
<h4 class="title"><?php echo e(__("Latest Transactions")); ?></h4>
<div class="dashboard-btn-wrapper">
<div class="dashboard-btn">
<a href="<?php echo e(setRoute('user.transaction.log.transfer.money')); ?>" class="btn--base"><?php echo e(__("View More")); ?></a>
</div>
</div>
</div>
</div>
<div class="dashboard-list-wrapper">
<?php echo $__env->make('user.components.transaction.index',[
'data' => $transactions
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('script'); ?>
<script>
document.querySelector('.number-input').addEventListener('input', function (e) {
let value = e.target.value;
if (!/^\d*\.?\d{0,2}$/.test(value)) {
e.target.value = value.slice(0, -1);
}
});
var fixedCharge = "<?php echo e($transaction_settings->fixed_charge); ?>";
var percentCharge = "<?php echo e($transaction_settings->percent_charge); ?>";
var currency = "<?php echo e(get_default_currency_code()); ?>";
$(".email").keyup(function(){
var email = $(this).val();
var checkEmailURL = "<?php echo e(setRoute('user.check.valid.email')); ?>";
if(email == '' || email == null){
$('.exist').html('');
}
$.post(checkEmailURL,{email:email,_token:"<?php echo e(csrf_token()); ?>"},function(response){
if(response.own){
if($('.exist').hasClass('text--success')){
$('.exist').removeClass('text--success');
}
$('.exist').addClass('text--danger').text(response.own);
$('.confirm').attr('disabled',true)
return false
}
if(response['data'] != null){
if($('.exist').hasClass('text--danger')){
$('.exist').removeClass('text--danger');
}
$('.exist').text(`Valid user for transaction.`).addClass('text--success');
$('.confirm').attr('disabled',false)
} else {
if($('.exist').hasClass('text--success')){
$('.exist').removeClass('text--success');
}
$('.exist').text('User doesn\'t exists.').addClass('text--danger');
$('.confirm').attr('disabled',true)
return false
}
});
});
$(".amount").keyup(function(){
var amount = $(this).val();
if(amount == '' || amount == null){
$('.sending-amount').text("");
$('.total-charge').text("");
$('.will-get-amount').text("");
$('.payable-amount').text("");
}else{
feesAndChargeCalculation(amount);
}
});
// fees and charge calculation
function feesAndChargeCalculation(amount){
var totalPercentCharge = (amount * percentCharge) / 100;
var totalCharge = parseFloat(fixedCharge) + parseFloat(totalPercentCharge);
var payableAmount = parseFloat(amount) + parseFloat(totalCharge);
$('.sending-amount').text(parseFloat(amount).toFixed(2) + " " + currency);
$('.total-charge').text(parseFloat(totalCharge).toFixed(2) + " " + currency);
$('.will-get-amount').text(parseFloat(amount).toFixed(2) + " " + currency);
$('.payable-amount').text(parseFloat(payableAmount).toFixed(2) + " " + currency);
}
</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/transfer-money/index.blade.php ENDPATH**/ ?>
At NFC Pay, your privacy is of utmost importance to us. This Privacy Policy outlines how we collect, use, share, and protect your personal information when you use our services, including our website and mobile applications.
1. Information We Collect
2. How We Use Your Information
We use the information we collect for the following purposes:
3. Sharing Your Information
We may share your personal information in the following circumstances:
4. Security of Your Information
We take the security of your personal information seriously and implement a variety of security measures, including encryption, secure servers, and access controls, to protect your data from unauthorized access, disclosure, alteration, or destruction. However, no method of transmission over the internet or electronic storage is completely secure, and we cannot guarantee its absolute security.
5. Your Privacy Rights
Depending on your location, you may have certain rights regarding your personal information, such as:
6. Third-Party Links
Our services may contain links to third-party websites or services. We are not responsible for the privacy practices or the content of these third-party sites. We encourage you to review the privacy policies of those third parties.
7. Children’s Privacy
Our services are not intended for individuals under the age of 13. We do not knowingly collect personal information from children under 13. If we become aware that we have collected personal information from a child under 13, we will take steps to delete that information.
8. Changes to This Privacy Policy
We may update this Privacy Policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. We will notify you of any significant changes by posting the new Privacy Policy on our website and updating the effective date.
9. Contact Us
If you have any questions or concerns about this Privacy Policy or our data practices, please contact us at:
Email: support@nfcpay.com