/home/kueuepay/public_html/storage/framework/views/2cef8615176b49bead9d2efaeee350133f811352.php

<?php $__env->startPush('css'); ?>
    <style>
        .fileholder {
            min-height: 300px !important;
        }

        .fileholder-files-view-wrp.accept-single-file .fileholder-single-file-view,.fileholder-files-view-wrp.fileholder-perview-single .fileholder-single-file-view{
            height: 256px !important;
        }
    </style>
<?php $__env->stopPush(); ?>

<?php $__env->startSection('page-title'); ?>
    <?php echo $__env->make('admin.components.page-title',['title' => __($page_title)], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('breadcrumb'); ?>
    <?php echo $__env->make('admin.components.breadcrumb',['breadcrumbs' => [
        [
            'name'  => __("Dashboard"),
            'url'   => setRoute("admin.dashboard"),
        ]
    ], 'active' => __($page_title)], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
    <form action="<?php echo e(setRoute('admin.payment.gateway.update',['add-money','manual',$payment_gateway->alias])); ?>" method="POST" enctype="multipart/form-data">
        <?php echo csrf_field(); ?>
        <?php echo method_field("PUT"); ?>
        <div class="custom-card">
            <div class="card-header">
                <h6 class="title"><?php echo e(__($page_title)); ?></h6>
            </div>
            <div class="card-body">
                <div class="row mb-10-none">
                    <div class="col-xl-3 col-lg-3 form-group">
                        <?php echo $__env->make('admin.components.form.input-file',[
                            'label'             => __("Gateway Image"),
                            'name'              => "image",
                            'class'             => "file-holder",
                            'old_files_path'    => files_asset_path('payment-gateways'),
                            'old_files'         => $payment_gateway->image,
                        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                    </div>
                    <div class="col-xl-9 col-lg-9">
                        <div class="form-group">
                            <?php echo $__env->make('admin.components.form.input',[
                                'label'         => __("Gateway Name")."*",
                                'name'          => "gateway_name",
                                'value'         => old('gateway_name',$payment_gateway->name),
                                'data_limit'    => 60,
                                'attribute'     => "required",
                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                        </div>
                        <div class="form-group">
                            <?php echo $__env->make('admin.components.form.input',[
                                'label'         => __("Currency Code").'*',
                                'name'          => "currency_code",
                                'value'         => old('currency_code',$payment_gateway->currencies->first()->currency_code),
                                'class'         => "currency_type",
                                'data_limit'    => 8,
                                'attribute'     => "required",
                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                        </div>
                        <div class="form-group">
                            <?php echo $__env->make('admin.components.form.input',[
                                'label'         => __("Currency Symbol")."*",
                                'name'          => "currency_symbol",
                                'value'         => old('currency_symbol',$payment_gateway->currencies->first()->currency_symbol),
                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="custom-card mt-15">
            <div class="card-body">
                <div class="row">
                    <div class="col-xl-4 col-lg-4 mb-10">
                        <div class="custom-inner-card">
                            <div class="card-inner-header">
                                <h5 class="title"><?php echo e(__("Amount Limit")); ?></h5>
                            </div>
                            <div class="card-inner-body">
                                <div class="row">
                                    <div class="col-xl-6 col-lg-6">
                                        <div class="form-group">
                                            <?php echo $__env->make('admin.components.form.input-amount',[
                                                'label'         => __("Minimum")."*",
                                                'name'          => "min_limit",
                                                'value'         => old("min_limit",$payment_gateway->currencies->first()->min_limit),
                                                'currency'      => $payment_gateway->currencies->first()->currency_code,
                                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                        </div>
                                    </div>
                                    <div class="col-xl-6 col-lg-6">
                                        <div class="form-group">
                                            <?php echo $__env->make('admin.components.form.input-amount',[
                                                'label'         => __("Maximum")."*",
                                                'name'          => "max_limit",
                                                'value'         => old("max_limit",$payment_gateway->currencies->first()->max_limit),
                                                'currency'      => $payment_gateway->currencies->first()->currency_code,     
                                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="col-xl-4 col-lg-4 mb-10">
                        <div class="custom-inner-card">
                            <div class="card-inner-header">
                                <h5 class="title"><?php echo e(__("Charge")); ?></h5>
                            </div>
                            <div class="card-inner-body">
                                <div class="row">
                                    <div class="col-xl-6 col-lg-6">
                                        <div class="form-group">
                                            <?php echo $__env->make('admin.components.form.input-amount',[
                                                'label'         => __("Fixed")."*",
                                                'name'          => "fixed_charge",
                                                'value'         => old("fixed_charge",$payment_gateway->currencies->first()->fixed_charge),
                                                'currency'      => $payment_gateway->currencies->first()->currency_code,     
                                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                        </div>
                                    </div>
                                    <div class="col-xl-6 col-lg-6">
                                        <div class="form-group">
                                            <?php echo $__env->make('admin.components.form.input-amount',[
                                                'label'             => __("Percent")."*",
                                                'name'              => "percent_charge",
                                                'value'             => old("percent_charge",$payment_gateway->currencies->first()->percent_charge),
                                                'currency'          => "%",
                                                'currency_class'    => false,
                                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="col-xl-4 col-lg-4 mb-10">
                        <div class="custom-inner-card">
                            <div class="card-inner-header">
                                <h5 class="title"><?php echo e(__("Rate")); ?></h5>
                            </div>
                            <div class="card-inner-body">
                                <div class="row">
                                    <div class="col-xl-12 col-lg-12">
                                        <div class="form-group">
                                            <label><?php echo e(__("Rate")); ?></label>
                                            <div class="input-group">
                                                <span class="input-group-text append ">1 &nbsp; <span class="default-currency"><?php echo e(get_default_currency_code($default_currency)); ?></span>&nbsp; = </span>
                                                <input type="text" class="form--control number-input" value="<?php echo e(old("rate",$payment_gateway->currencies->first()->rate)); ?>" name="rate" placeholder="Type Here...">
                                                <span class="input-group-text currency"><?php echo e($payment_gateway->currencies->first()->currency_code); ?></span>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="col-xl-12 col-lg-12 form-group">
                        <?php echo $__env->make('admin.components.form.input-text-rich',[
                            'label'     => __("Instruction")."*",
                            'name'      => "desc",
                            'value'     => old("desc",$payment_gateway->desc),
                        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                    </div>
                    <div class="col-xl-12 col-lg-12 form-group">
                        <div class="custom-inner-card input-field-generator" data-source="manual_gateway_input_fields">
                            <div class="card-inner-header">
                                <h6 class="title"><?php echo e(__("Collect Data")); ?></h6>
                                <button type="button" class="btn--base add-row-btn"><i class="fas fa-plus"></i> <?php echo e(__("Add")); ?></button>
                            </div>
                            <div class="card-inner-body">
                                <div class="results">
                                    <?php $__currentLoopData = $payment_gateway->input_fields; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <div class="row add-row-wrapper align-items-end">
                                            <div class="col-xl-3 col-lg-3 form-group">
                                                <?php echo $__env->make('admin.components.form.input',[
                                                    'label'     => __("Field Name")."*",
                                                    'name'      => "label[]",
                                                    'attribute' => "required",
                                                    'value'     => $item->label,
                                                ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                            </div>
                                            <div class="col-xl-2 col-lg-2 form-group">
                                                <?php
                                                    $selectOptions = ['text' => "Input Text", 'file' => "File", 'textarea' => "Textarea"];
                                                ?>
                                                <label><?php echo e(__("Field Types")); ?>*</label>
                                                <select class="form--control nice-select field-input-type" name="input_type[]" data-old="<?php echo e($item->type); ?>" data-show-db="true">
                                                    <?php $__currentLoopData = $selectOptions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                                        <option value="<?php echo e($key); ?>" <?php echo e(($key == $item->type) ? "selected" : ""); ?>><?php echo e($value); ?></option>
                                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                                </select>
                                            </div>
        
                                            <div class="field_type_input col-lg-4 col-xl-4">
                                                <?php if($item->type == "file"): ?>
                                                    <div class="row">
                                                        <div class="col-xl-6 col-lg-6 form-group">
                                                            <?php echo $__env->make('admin.components.form.input',[
                                                                'label'         => __("Max File Size (mb)")."*",
                                                                'name'          => "file_max_size[]",
                                                                'type'          => "number",
                                                                'attribute'     => "required",
                                                                'value'         => old('file_max_size[]',$item->validation->max),
                                                                'placeholder'   => "ex: 10",
                                                            ], \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'         => __("File Extension")."*",
                                                                'name'          => "file_extensions[]",
                                                                'attribute'     => "required",
                                                                'value'         => old('file_extensions[]',implode(",",$item->validation->mimes)),
                                                                'placeholder'   => "ex: jpg, png, pdf",
                                                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                                        </div>
                                                    </div>
                                                <?php else: ?>
                                                    <div class="row">
                                                        <div class="col-xl-6 col-lg-6 form-group">
                                                            <?php echo $__env->make('admin.components.form.input',[
                                                                'label'         => __("Min Character")."*",
                                                                'name'          => "min_char[]",
                                                                'type'          => "number",
                                                                'attribute'     => "required",
                                                                'value'         => old('min_char[]',$item->validation->min),
                                                                'placeholder'   => "ex: 6",
                                                            ], \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'         => __("Max Character")."*",
                                                                'name'          => "max_char[]",
                                                                'type'          => "number",
                                                                'attribute'     => "required",
                                                                'value'         => old('max_char[]',$item->validation->max),
                                                                'placeholder'   => "ex: 16",
                                                            ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                                        </div>
                                                    </div>
                                                <?php endif; ?>
                                            </div>
        
                                            <div class="col-xl-2 col-lg-2 form-group">
                                                <?php echo $__env->make('admin.components.form.switcher',[
                                                    'label'     => __("Field Necessity")."*",
                                                    'name'      => "field_necessity[]",
                                                    'options'   => ['Required' => 1,'Optional' => 0],
                                                    'value'     => old("field_necessity[]",$item->required),
                                                ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                                            </div>
                                            <div class="col-xl-1 col-lg-1 form-group">
                                                <button type="button" class="custom-btn btn--base btn--danger row-cross-btn w-100 btn-loading"><i class="las la-times"></i></button>
                                            </div>
                                        </div>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="row mb-10-none">
                    <div class="col-xl-12 col-lg-12 form-group">
                        <?php echo $__env->make('admin.components.button.form-btn',[
                            'class'         => "w-100",
                            'text'          => __("Update"),
                            'permission'    => "admin.payment.gateway.update",
                        ], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
                    </div>
                </div>
            </div>
        </div>
    </form>
<?php $__env->stopSection(); ?>

<?php $__env->startPush('script'); ?>
    <script>

    </script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('admin.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/kueuepay/public_html/resources/views/admin/sections/payment-gateways/add-money/manual/edit.blade.php ENDPATH**/ ?>
Refund Policy
top

At NFC Pay, we strive to provide a seamless and satisfactory experience with our services. This Refund Policy outlines the circumstances under which refunds may be issued for transactions made through our platform. Please read this policy carefully to understand your rights regarding refunds.
1. Eligibility for Refunds
Refunds may be considered under the following circumstances:
 

2. Non-Refundable Situations
Refunds will generally not be issued in the following situations:
 

3. Refund Process
To request a refund, please follow these steps:
 

  1. Contact Customer Support: Reach out to our customer support team via [email/phone/app support chat] with your transaction details, including the date, amount, and reason for the refund request.
  2. Investigation: Our team will review your request and may ask for additional information or documentation to support your claim. This process typically takes [5-10 business days], depending on the complexity of the issue.
  3. Refund Decision: After reviewing your request, we will notify you of our decision. If approved, the refund will be processed back to your original payment method. The timing of the refund will depend on your bank or payment provider and may take up to [10 business days] to reflect in your account.

4. Refund Exceptions
Certain transactions may be subject to specific terms and conditions, including non-refundable fees or charges. Please review the terms associated with each transaction carefully, as some fees may not be eligible for refunds.
5. Modifications to the Refund Policy
NFC Pay reserves the right to modify this Refund Policy at any time. Changes will be communicated through updates on our website and app, and the effective date will be updated accordingly. We encourage you to review this policy periodically to stay informed about our refund practices.
By using NFC Pay, you agree to this Refund Policy and understand the terms under which refunds may be issued. Our goal is to ensure a fair and transparent refund process, providing you with confidence and peace of mind when using our services.