{{ html()->form('POST', route('login_register_page_settings'))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->id('frontend_setting')->open() }} {{ html()->hidden('id',$landing_page_data ?? null)->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',$landing_page_data->title )->id('title')->placeholder(trans('messages.title'))->class('form-control') }}
@if($landing_page_data && getMediaFileExit($landing_page_data, 'login_register_image')) @endif
{{ html()->file('login_register_image')->class('custom-file-input custom-file-input-sm detail')->id('login_register_image')->attribute('lang', 'en')->attribute('accept', 'image/*')->attribute('onchange', 'preview()') }} @if($landing_page_data && getMediaFileExit($landing_page_data, 'login_register_image')) @else @endif
{{ html()->label(__('messages.description'), 'description')->class('form-control-label') }} {{ html()->textarea('description',$landing_page_data->description )->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() }}