{{ 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') }} {{ html()->text('title', old('title'))->id('title')->placeholder(trans('messages.title'))->class('form-control')->required() }}
{{ html()->label(__('messages.select_name', ['select' => __('messages.service')]) . ' *', 'name')->class('form-control-label') }}
{{ html()->select('service_id[]', []) ->value(old('service_id')) ->class('select2js form-control service_id') ->id('service_id') ->attribute('data-placeholder', __('messages.select_name', ['select' => __('messages.service')])) ->attribute('data-ajax--url', route('ajax-list', ['type' => 'service', 'is_featured' => 1])) ->multiple() }}
{{ html()->submit(__('messages.save'))->class('btn btn-md btn-primary float-md-end submit_section1') }} {{ html()->form()->close() }}