{!! Form::label('title','Title') !!} {!! Form::text('title' , $page->title , ['class' => 'form-control','placeholder' => 'Title','required'=>'true']) !!}
/ {!! Form::text('str_slug' , $page->str_slug , ['class' => 'form-control','placeholder' => 'Slug','required'=>'true']) !!} /
{!! Form::label('canonical_url','Canonical URL') !!} {!! Form::text('meta[canonical_url]' , ($page->id > 0) ? customPageFieldFind($page->id, 'canonical_url') : '', ['class' => 'form-control','placeholder' => 'https://www.YourWebsite.com','required'=>'true']) !!}

Leave empty to default to permalink

Featured Image
{!! Form::label('title','Title') !!} {!! Form::text('meta_information[title]' , $meta_title , ['class' => 'form-control','placeholder' => 'Title']) !!}
{!! Form::label('description','Description') !!} {!! Form::textarea('meta_information[description]' , $meta_description , ['rows' => 2,'class' => 'form-control','placeholder' => 'Description']) !!}
{!! Form::label('title','Keywords') !!} {!! Form::text('meta_information[keywords]' , $meta_keywords , ['class' => 'form-control','placeholder' => 'Keywords']) !!}
@if( $page->id > 0 ) @endif