{{ Form::text('ext_title', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('ext_title') ? ' is-invalid': ''), 'placeholder' => __('Extended/SEO Title') ]) }} @if ($errors->has('ext_title'))
{{ $errors->first('ext_title') }}
@endif
{{ Form::textarea('meta_description', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('meta_description') ? ' is-invalid' : ''), 'placeholder' => __('Meta Description'), 'rows' => 4 ]) }} @if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
{{ Form::text('meta_keywords', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('meta_keywords') ? ' is-invalid' : ''), 'placeholder' => __('Meta Keywords, separated by commas') ]) }} @if ($errors->has('meta_keywords'))
{{ $errors->first('meta_keywords') }}
@endif