{{ html()->form()->close() }}
{{ html()->form('POST', route('frontend.website.information.update', 'document_verification'))->id('documentVerification')->attribute('enctype','multipart/form-data')->open() }}
@foreach($documentVerification as $key => $value)
@if(in_array($key, ['title','subtitle']))
{!! html()->label(__('message.'.$key) . ' *')->for($key)->class('form-control-label') !!}
{!! html()->text($key, $value ?? null)->placeholder(__('message.'.$key))->class('form-control')->required() !!}
@else
{!! html()->label(__('message.'.$key) . ' *')->for($key)->class('form-control-label') !!}
{!! html()->textarea($key, $value ?? null)->class('form-control textarea')->rows(3)->placeholder(__('message.'.$key))->required() !!}
@endif
@endforeach
{{ html()->form()->close() }}
@if(count($data) > 0)
@include('document-verification.list')
@endif