@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']) }}
{{ __('Select Type') }}
{{ __('Text Box') }}
{{ __('Number') }}
{{ __('Radio Button') }}
{{ __('Checkbox') }}
{{ __('Dropdown') }}
{{ __('Text Area') }}
{{ __('File') }}
{{-- Option Section --}}
{{__('Add New Option')}}
{{ __('Option') }} -
1
*
{{-- 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
{{ __('Edit Form Field') }}
{{ csrf_field() }}
{{-- Name --}}
{{ Form::label('type', __('Name'), ['class' => 'form-label text-center']) }} {{ Form::text('name', '', ['class' => 'form-control', 'id' => 'edit-name','placeholder' => trans('Name'), 'data-parsley-required' => 'true']) }}
@endsection @section('script') @endsection