@extends('admin.layouts.master')
@push('css')
@endpush
@section('page-title')
@include('admin.components.page-title',['title' => __($page_title)])
@endsection
@section('breadcrumb')
@include('admin.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("admin.dashboard"),
]
], 'active' => __("Setup KYC")])
@endsection
@section('content')
<form action="{{ setRoute('admin.setup.kyc.update',$kyc->slug) }}" method="POST">
@csrf
@method("PUT")
<div class="custom-card kyc-form input-field-generator" data-source="kyc_input_fields">
<div class="card-header">
<h6 class="title">{{ __("KYC Data Form") }}</h6>
@include('admin.components.button.custom',[
'type' => "button",
'class' => "add-row-btn",
'text' => __("Add"),
'icon' => "fas fa-plus",
'permission' => "admin.setup.kyc.update",
])
</div>
<div class="card-body">
<div class="results">
@foreach ($kyc->fields ?? [] as $key => $item)
<div class="row add-row-wrapper align-items-end">
<div class="col-xl-3 col-lg-3 form-group">
@include('admin.components.form.input',[
'label' => __("Field Name")."*",
'name' => "label[]",
'attribute' => "required",
'value' => old('label[]',$item->label),
])
</div>
<div class="col-xl-2 col-lg-2 form-group">
@php
$selectOptions = ['text' => "Input Text", 'file' => "File", 'textarea' => "Textarea",'select' => "Select"];
@endphp
<label>{{ __("Field Types") }}*</label>
<select class="form--control nice-select field-input-type" name="input_type[]" data-old="{{ $item->type }}" data-show-db="true">
@foreach ($selectOptions as $key => $value)
<option value="{{ $key }}" {{ ($key == $item->type) ? "selected" : "" }}>{{ $value }}</option>
@endforeach
</select>
</div>
<div class="field_type_input col-lg-4 col-xl-4">
@if ($item->type == "file")
<div class="row">
<div class="col-xl-6 col-lg-6 form-group">
@include('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"),
])
</div>
<div class="col-xl-6 col-lg-6 form-group">
@include('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"),
])
</div>
</div>
@elseif ($item->type == "select")
<div class="row">
<div class="col-xl-12 col-lg-12 form-group">
@include('admin.components.form.input',[
'label' => __("Options")."*",
'name' => "select_options[]",
'attribute' => "required=true",
'value' => old("select_options[]",implode(",",$item->validation->options)),
])
</div>
</div>
@else
<div class="row">
<div class="col-xl-6 col-lg-6 form-group">
@include('admin.components.form.input',[
'label' => __("Min Character")."*",
'name' => "min_char[]",
'type' => "number",
'attribute' => "required",
'value' => old('min_char[]',$item->validation->min),
'placeholder' => __("ex: 6"),
])
</div>
<div class="col-xl-6 col-lg-6 form-group">
@include('admin.components.form.input',[
'label' => __("Max Character")."*",
'name' => "max_char[]",
'type' => "number",
'attribute' => "required",
'value' => old('max_char[]',$item->validation->max),
'placeholder' => __("ex: 16"),
])
</div>
</div>
@endif
</div>
<div class="col-xl-2 col-lg-2 form-group">
@include('admin.components.form.switcher',[
'label' => __("Field Necessity")."*",
'name' => "field_necessity[]",
'options' => [__('Required') => "1",__('Optional') => "0"],
'value' => old("field_necessity[]",$item->required),
])
</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"><i class="las la-times"></i></button>
</div>
</div>
@endforeach
{{-- Default Field Row --}}
@if (count($kyc->fields ?? []) == 0)
<div class="row add-row-wrapper align-items-end">
<div class="col-xl-3 col-lg-3 form-group">
@include('admin.components.form.input',[
'label' => __("Field Name")."*",
'name' => "label[]",
'attribute' => "required",
'value' => old('label[]'),
])
</div>
<div class="col-xl-2 col-lg-2 form-group">
@php
$selectOptions = ['text' => "Input Text", 'file' => "File", 'textarea' => "Textarea",'select' => "Select"];
@endphp
<label>{{ __("Field Types") }}*</label>
<select class="form--control nice-select field-input-type" name="input_type[]" data-old="file">
@foreach ($selectOptions as $key => $value)
<option value="{{ $key }}">{{ $value }}</option>
@endforeach
</select>
</div>
<div class="field_type_input col-lg-4 col-xl-4">
</div>
<div class="col-xl-2 col-lg-2 form-group">
@include('admin.components.form.switcher',[
'label' => __("Field Necessity")."*",
'name' => "field_necessity[]",
'options' => [__('Required') => "1",__('Optional') => "0"],
'value' => old("field_necessity[]","1"),
])
</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"><i class="las la-times"></i></button>
</div>
</div>
@endif
</div>
<div class="row">
<div class="col-xl-12 col-lg-12 form-group">
@include('admin.components.button.form-btn',[
'class' => "w-100 btn-loading",
'text' => __("Save & Change"),
'permission' => "admin.setup.kyc.update",
])
</div>
</div>
</div>
</div>
</form>
@endsection
@push('script')
@endpush
About Section
NFC Pay was founded with a vision to transform the way people handle transactions. Our journey is defined by a commitment to innovation, security, and convenience. We strive to deliver seamless, user-friendly payment solutions that make everyday transactions effortless and secure. Our mission is to empower you to pay with ease and confidence, anytime, anywhere.
FAQ Section
Here are answers to some common questions about NFC Pay. We aim to provide clear and concise information to help you understand how our platform works and how it can benefit you. If you have any further inquiries, please don’t hesitate to contact our support team.
Download the app and sign up using your email or phone number, then complete the verification process.
Yes, we use advanced encryption and security protocols to protect your payment details.
Absolutely, you can link multiple debit or credit cards to your wallet.
Go to the transfer section, select the recipient, enter the amount, and authorize the transfer.
Use the “Forgot PIN” feature in the app to reset it following the provided instructions.
Sign up for a merchant account through the app and follow the setup instructions to start accepting payments.
Yes, you can view and track your payment status in the account dashboard