{!! Html::decode(Form::label('page_title', 'Page Title
', ['class' => ''])) !!}
The page title will be shown in the browser tab. It is an optional field but when set it will override the Main Header Middle (Big).
Please make sure you include relavent keywords to improve SEO
{!! Form::text('page_title', null, ['class' => 'form-control', $disabledField]) !!}
{{ $errors->first('page_title') }}
{!! Form::label('name', 'Page Internal Name', ['class' => '']) !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', $disabledField]) !!}
{{ $errors->first('name') }}