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