{!! Form::label('title', 'Title', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::text('title', old('title', isset($post->title) ? $post->title : ''), ['class' => 'form-control']) !!}
{!! Form::label('description', 'Description', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::textarea('description', old('description', isset($post->description) ? $post->description : ''), ['class' => 'form-control', 'rows' => 5, 'cols' => 40]) !!}
{!! Form::label('detail', 'Detail', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::textarea('detail', old('detail', isset($post->detail) ? $post->detail : ''), ['class' => 'form-control']) !!}
{!! Form::label('image', 'Image', ['class' => 'col-md-1 control-label font-weight-600 font-weight-600']) !!}
@if(isset($post)) @else @endif Note: Photos should be size from 160 x 160 to 3,000 x 3,000 pixels.
{!! Form::label('sticky', 'Sticky', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::radio('sticky', '0', ( (isset($post->sticky) && $post->sticky == 0) || !isset($post->sticky) ) ? true : false) !!} No   {!! Form::radio('sticky', '1', ( isset($post->sticky) && $post->sticky == 1 ) ? true : false) !!} Yes
{!! Form::label('seo_title', 'Title', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::text('seo_title', old('seo_title', isset($post->seo_title) ? $post->seo_title : ''), ['class' => 'form-control']) !!}
{!! Form::label('seo_description', 'Description', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::textarea('seo_description', old('seo_description', isset($post->seo_description) ? $post->seo_description : ''), ['class' => 'form-control', 'rows' => 5, 'cols' => 40]) !!}
{!! Form::label('seo_title', 'Keywords', ['class' => 'col-md-1 control-label font-weight-600']) !!}
{!! Form::text('seo_keywords', old('seo_keywords', isset($post->seo_keywords) ? $post->seo_keywords : ''), ['class' => 'form-control']) !!} Separate keywords with commas. Example: men's, women's ...