@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
Service Section
Discover how our services are designed to enhance your NFC Pay experience with convenience, security, and innovative solutions. From managing transactions to secure payments, we are dedicated to providing seamless support every step of the way.
Easily save your credit and debit card details within our app for quick and secure transactions. This feature ensures that your payment information is protected with advanced encryption and can be used for future purchases with just a tap.
Transfer funds quickly and securely between users with our streamlined money transfer service. Simply select the recipient, enter the amount, and authorize the transaction for instant, hassle-free transfers.
Activate your merchant account effortlessly to start receiving payments. Our intuitive setup process ensures that you can begin accepting transactions smoothly, helping your business thrive with minimal setup time.
Keep track of all your transactions in real time through our app. Monitor payment statuses, view transaction history, and manage your account efficiently, ensuring complete control over your financial activities.
Our dedicated support team is available to assist you with any queries or issues. Whether you need help with setting up your account or resolving transaction-related questions, we’re here to provide prompt and reliable assistance.