{{ html()->form('POST', route('landing_page_settings_updates'))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->open() }} {{ html()->hidden('id', $landing_page->id)->placeholder('id')->class('form-control') }} {{ html()->hidden('type', $tabpage)->placeholder('id')->class('form-control') }}
status == 1 ? 'checked' : '' }}>
{{ html()->label(trans('messages.title') . ' *', 'title')->class('form-control-label')->attribute('for', 'title') }} {{ html()->text('title', old('title'))->id('title')->placeholder(trans('messages.title'))->class('form-control') }}
{{ html()->label(trans('messages.subtitle') . ' *', 'subtitle')->class('form-control-label')->attribute('for', 'subtitle') }} {{ html()->text('subtitle', old('subtitle'))->id('subtitle')->placeholder(trans('messages.subtitle'))->class('form-control') }}
{{ html()->label(trans('messages.description') . ' *', 'description')->class('form-control-label')->attribute('for', 'description') }} {{ html()->text('description', old('description'))->id('description')->placeholder(trans('messages.description'))->class('form-control') }}
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end submit_section1') }} {{ html()->form()->close() }}