{{ Form::open(['method' => 'POST', 'route' => [ 'frontend.website.information.update', 'client_testimonials'], 'enctype' => 'multipart/form-data', 'data-toggle'=>'validator']) }}
@foreach($client_testimonials as $key => $value) @if( in_array( $key, ['title', 'subtitle'] ))
{{ Form::label($key, __('message.'.$key),['class'=>'form-control-label'] ) }} {{ Form::text($key, $value ?? null,[ 'placeholder' => __('message.'.$key), 'class' => 'form-control' ]) }}
@endif @endforeach

{{ Form::close() }}
@if(count($data) > 0) @include('client_testimonials.list') @endif