{{ $pageTitle ?? __('message.list') }}
{{ html()->form()->close() }} {{ html()->form('POST', route('frontend.website.information.update', 'why_choose'))->id('whydelivery_form')->attribute('enctype','multipart/form-data')->open() }}
@foreach($whydelivery as $key => $value) @if(in_array($key, ['title']))
{!! 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('whydelivery.list') @endif
@section('bottom_script') @endsection