Entry
{{--Basic Settings--}}
{{--Advanced Settings--}}
{!! Form::label('Title') !!}
{!! Form::text('cms_editor_title', $cmsEditor->cms_editor_title, ['class' => 'form-control', 'placeholder' => 'Title', 'id' => 'cms_editor_title']) !!}
@if ($errors->has('cms_editor_title'))
{!! $errors->first('cms_editor_title') !!}@endif
{!! Form::label('Slug') !!}
{!! Form::text('cms_editor_slug', $cmsEditor->cms_editor_slug, ['class' => 'form-control', 'placeholder' => 'Slug', 'id' => 'cms_editor_slug']) !!}
@if ($errors->has('cms_editor_slug'))
{!! $errors->first('cms_editor_slug') !!}@endif
{!! Form::label('Details') !!}
{!! Form::textarea('cms_editor_details', $cmsEditor->cms_editor_details, ['class' => 'form-control', 'rows' => 20, 'placeholder' => 'Details', 'id' => 'cms_editor_details']) !!}
@if ($errors->has('cms_editor_details'))
{!! $errors->first('cms_editor_details') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('cms_editor_is_exist', [1 => 'Active', 0 => 'Inactive'], isset($cmsEditor->cms_editor_is_exist) ? $cmsEditor->cms_editor_is_exist : null, ['class' => 'form-control']) !!}
{!! Form::label('Meta Title') !!}
{!! Form::text('cms_meta_title', $cmsEditor->cms_meta_title, ['class' => 'form-control', 'placeholder' => 'Enter Meta Title']) !!}
@if ($errors->has('cms_meta_title'))
{!! $errors->first('cms_meta_title') !!}@endif
{!! Form::label('Meta Keyword') !!}
{!! Form::textarea('cms_meta_keyword', $cmsEditor->cms_meta_keyword, ['class' => 'form-control', 'placeholder' => 'Enter Meta Keyword']) !!}
@if ($errors->has('cms_meta_keyword'))
{!! $errors->first('cms_meta_keyword') !!}@endif
{!! Form::label('Meta Description') !!}
{!! Form::textarea('cms_meta_description', $cmsEditor->cms_meta_description, ['class' => 'form-control', 'placeholder' => 'Enter Meta Description']) !!}
@if ($errors->has('cms_meta_description'))
{!! $errors->first('cms_meta_description') !!}@endif
{!! Form::label('Search Keyword') !!}
{!! Form::textarea('cms_search_keyword', $cmsEditor->cms_search_keyword, ['class' => 'form-control', 'placeholder' => 'Enter Meta Keyword']) !!}
@if ($errors->has('cms_search_keyword'))
{!! $errors->first('cms_search_keyword') !!}@endif
{!! Form::submit('Update',['class' => 'btn btn-warning']) !!}
{!! Form::close() !!}