@if ($seo)
{!! Form::model($seo, ['method' => 'PATCH', 'action' => ['SeoController@update', $seo->id], 'files' => true]) !!}
{!! Form::label('author',__('Author Name')) !!}
{!! Form::text('author', null, ['placeholder' => __('EnterAuthorName'),'id' => 'textbox', 'class' => 'form-control']) !!}
{{ $errors->first('author') }}
{!! Form::label('description', __('Metadata Description')) !!}
{!! Form::textarea('description', null, ['id' => 'textbox', 'class' => 'form-control']) !!}
{{ $errors->first('description') }}
{!! Form::label('keyword', __('Metadata Keyword')) !!}
{!! Form::textarea('keyword', null, ['placeholder' => __('Keyword Placeholder'),'id' => 'textbox', 'class' => 'form-control']) !!}
{{ $errors->first('keyword') }}
{!! Form::label('google',__('Google Analytics')) !!}
{!! Form::text('google', null, ['class' => 'form-control']) !!}
{{ $errors->first('google') }}
{!! Form::label('fb', __('Facebook Pixcal')) !!}
{!! Form::text('fb', null, ['id' => 'textbox1', 'class' => 'form-control']) !!}
{{ $errors->first('fb') }}
{!! Form::close() !!}
@endif