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

{{ Form::close() }}