{{ $pageTitle ?? __('message.list') }}
{{ __('message.our_mission_description') }}
{{ Form::open(['method' => 'POST', 'route' => [ 'frontend.website.information.update', 'our_mission'], 'enctype' => 'multipart/form-data', 'data-toggle'=>'validator']) }}
@foreach($our_mission as $key => $value) @if( in_array( $key, ['title'] ))
{{ 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() }}
@if(count($data) > 0) @include('our_mission.list') @endif