{{ $pageTitle ?? __('message.list') }}
{{ html()->form()->close() }} {{ html()->form('POST', route('frontend.website.information.update', 'deliver_your_way'))->id('deliverYourWay')->attribute('enctype','multipart/form-data')->open() }}
@foreach($deliveryourway 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('deliveryourway.list') @endif
@section('bottom_script') @endsection