{{ html()->form('POST', route('frontend.website.information.update', 'client_review'))->id('clientreview_form')->attribute('enctype', 'multipart/form-data')->open() }}
@foreach ($clientreview as $key => $value)
@if (in_array($key, ['client_review_title']))
{{ html()->label(__('message.' . $key) . ' *', $key)->class('form-control-label') }}
{{ html()->text($key, $value ?? null)->placeholder(__('message.' . $key))->class('form-control')->attribute('required', 'true') }}
@endif
@endforeach
{{ html()->form()->close() }}
@if (count($data) > 0)
@include('clientreview.list')
@else
@endif