{{ html()->form('POST', route('landing_page_settings_updates'))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->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')->placeholder(trans('messages.title'))->class('form-control')}}
{{ html()->label(trans('messages.description'), 'description')->class('form-control-label') }} {{ html()->textarea('description',null)->id('description')->placeholder(trans('messages.description'))->class('form-control textarea')->rows(2)}}
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end submit_section1') }} {{ html()->form()->close() }}