{{ Form::model($dowloandapp ?? null, ['method' => 'POST', 'route' => ['settingUpdate'], 'id' => 'main_form']) }}
{!! Form::hidden('key[]', 'download_title') !!}
{!! Form::hidden('type[]', 'download_app') !!}
{{ Form::label('download_title', __('message.title') . ' *', ['class' => 'form-control-label'], false) }}
{{ Form::text('value[]',$download_title ?? null, ['placeholder' => __('message.title'), 'class' => 'form-control']) }}
{!! Form::hidden('key[]', 'download_subtitle') !!}
{!! Form::hidden('type[]', 'download_app') !!}
{{ Form::label('download_subtitle', __('message.subtitle') . ' *', ['class' => 'form-control-label'], false) }}
{{ Form::text('value[]', $download_subtitle ?? null, ['placeholder' => __('message.subtitle'), 'class' => 'form-control']) }}
{{ Form::close() }}
{{ Form::open(['route' => ['image-save'], 'method' => 'POST', 'files' => true, 'id' => 'image_form','enctype' => 'multipart/form-data']) }}
@if($dowloandapp->isNotEmpty())
@foreach($dowloandapp as $image)
@if(getMediaFileExit($image, 'download_app_logo'))
@endif
@endforeach
@endif
{{ Form::submit(__('message.save'), ['class' => 'btn btn-md btn-primary float-md-right','id' => 'saveButton']) }}
{{ Form::close() }}