{{ Form::model($landing_page, ['method' => 'POST','route' => ['landing_page_settings_updates'],'enctype'=>'multipart/form-data','data-toggle'=>'validator','id'=>'frontend_setting']) }} {{ Form::hidden('id', null, array('placeholder' => 'id','class' => 'form-control')) }} {{ Form::hidden('type', $tabpage, array('placeholder' => 'id','class' => 'form-control')) }}
status == 1 ? 'checked' : ''}}>
{{ Form::label('title',trans('messages.title').' *',['class'=>'form-control-label'], false ) }} {{ Form::text('title',old('title'),['id'=>'title','placeholder' => trans('messages.title'),'class' =>'form-control']) }}
main_image @if($landing_page && getMediaFileExit($landing_page, 'main_image')) @endif
{{ Form::file('main_image', ['class'=>"custom-file-input custom-file-input-sm detail" , 'id'=>"main_image" , 'lang'=>"en" , 'accept'=>"image/*", 'onchange'=>"preview()"]) }} @if($landing_page && getMediaFileExit($landing_page, 'main_image')) @else @endif
google_play @if($landing_page && getMediaFileExit($landing_page, 'google_play')) @endif
{{ Form::file('google_play', ['class'=>"custom-file-input custom-file-input-sm detail" , 'id'=>"google_play" , 'lang'=>"en" , 'accept'=>"image/*", 'onchange'=>"preview()"]) }} @if($landing_page && getMediaFileExit($landing_page, 'google_play')) @else @endif
app_store @if($landing_page && getMediaFileExit($landing_page, 'app_store')) @endif
{{ Form::file('app_store', ['class'=>"custom-file-input custom-file-input-sm detail" , 'id'=>"app_store" , 'lang'=>"en" , 'accept'=>"image/*", 'onchange'=>"preview()"]) }} @if($landing_page && getMediaFileExit($landing_page, 'app_store')) @else @endif
{{ Form::label('description',__('messages.description'), ['class' => 'form-control-label']) }} {{ Form::textarea('description', null, ['class'=>"form-control textarea" , 'rows'=>2 , 'placeholder'=> __('messages.description') ]) }}
{{ Form::submit(__('messages.save'), ['class'=>"btn btn-md btn-primary float-md-right submit_section1"]) }} {{ Form::close() }}