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