{{ $pageTitle ?? __('message.list') }}
{{ Form::model($information ?? null, ['method' => 'POST', 'route' => ['settingUpdate'], 'id' => 'main_form']) }}
{!! Form::hidden('key[]', 'app_name') !!} {!! Form::hidden('type[]', 'app_info') !!} {{ Form::label('app_name', __('message.app_name') . ' *', ['class' => 'form-control-label'], false) }} {{ Form::text('value[]', $app_name ?? null, ['placeholder' => __('message.app_name'), 'class' => 'form-control']) }}
{!! Form::hidden('key[]', 'image_title') !!} {!! Form::hidden('type[]', 'app_info') !!} {{ Form::label('image_title', __('message.title') . ' *', ['class' => 'form-control-label'], false) }} {{ Form::text('value[]',$image_title ?? null, ['placeholder' => __('message.title'), 'class' => 'form-control']) }}
{{ Form::close() }}
{{ Form::open(['route' => ['image-save'], 'method' => 'POST', 'files' => true, 'id' => 'image_form', 'enctype' => 'multipart/form-data']) }}
{!! Form::hidden('key', 'background_image') !!} {!! Form::hidden('type', 'app_info') !!} {{ Form::label('background_image', __('message.background_image'), ['class' => 'form-control-label'], false) }}
{{ Form::file('background_image', ['class' => 'custom-file-input', 'lang' => 'en', 'accept' => 'image/*']) }}
@if($information->isNotEmpty()) @foreach($information as $image) @if(getMediaFileExit($image, 'background_image'))
@endif @endforeach @endif
{{ Form::close() }}
{{ Form::open(['route' => ['image-save'], 'method' => 'POST', 'files' => true, 'id' => 'image_form_road', 'enctype' => 'multipart/form-data']) }}
{!! Form::hidden('key', 'logo_image') !!} {!! Form::hidden('type', 'app_info') !!} {{ Form::label('logo_image', __('message.logo_image'), ['class' => 'form-control-label'], false) }}
{{ Form::file('logo_image', ['class' => 'custom-file-input', 'lang' => 'en', 'accept' => 'image/*']) }}
@if($information->isNotEmpty()) @foreach($information as $image) @if(getMediaFileExit($image, 'logo_image'))
@endif @endforeach @endif
{{ Form::close() }}

@section('bottom_script') @endsection