@extends('layouts.main') @section('title') {{ __('Verify Agent Form') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content') @if (has_permissions('create', 'verify_customer_form'))

{{ __('Create Form Field') }}

{!! Form::open(['url' => route('verify-customer-form.store'), 'data-parsley-validate', 'files' => true, 'class' => 'create-form','data-pre-submit-function','data-success-function'=> "formSuccessFunction"]) !!} @csrf
{{-- Name --}}
{{ Form::label('type', __('Name'), ['class' => 'form-label text-center']) }} {{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => trans('Name'), 'data-parsley-required' => 'true']) }}
{{-- Field Type --}}
{{ Form::label('field-type', __('Field Type'), ['class' => 'form-label text-center']) }}
{{-- Option Section --}} {{-- Save --}}
{{ Form::submit(__('Save'), ['class' => 'btn btn-primary me-1 mb-1', 'id' => 'btn_submit']) }}
{!! Form::close() !!}
@endif @if (has_permissions('read', 'verify_customer_form'))
@if (has_permissions('update', 'verify_customer_form')) @endif
{{ __('ID') }} {{ __('Name') }} {{ __('Field Type') }} {{ __('Field Values') }} {{ __('Enable/Disable') }}{{ __('Action') }}
@endif @endsection @section('script') @endsection