{!! Form::label('title', 'Title', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('title', null, ["placeholder" => "Title", "class" => "form-control border-form", "required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'title'])
{!! Form::label('description', 'Description', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('description', null, ["placeholder" => "Description", "class" => "form-control border-form summernote"]) !!} @include('includes.form_fields_validation_message', ['name' => 'description'])
@if (isset($data['row']))
@if ($data['row']->image) @else

No image.

@endif
@endif
{!! Form::label('main_image', 'Image', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::file('main_image') !!} @include('includes.form_fields_validation_message', ['name' => 'main_image']) ? Recomended Image Size 870px X 439px(72dpi)
@if (isset($data['row']))
@if ($data['row']->file) {{ $data['row']->title }} @else

No File.

@endif
@endif
{!! Form::label('download_file', 'Attachment File', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::file('download_file') !!} @include('includes.form_fields_validation_message', ['name' => 'download_file'])
{!! Form::label('publish_date', 'Publish Date', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('publish_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "form-control border-form date-picker"]) !!} @include('includes.form_fields_validation_message', ['name' => 'publish_date'])
{!! Form::label('seo_title', 'SEO Title', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('seo_title', null, ["placeholder" => "SEO Title", "class" => "form-control border-form"]) !!} @include('includes.form_fields_validation_message', ['name' => 'seo_title'])
{!! Form::label('seo_keywords', 'SEO Keyword', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('seo_keywords', null, ["placeholder" => "abc, efg", "class" => "form-control border-form"]) !!} @include('includes.form_fields_validation_message', ['name' => 'seo_keywords'])
{!! Form::label('seo_description', 'SEO Description', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('seo_description', null, ["placeholder" => "Seo Description", "class" => "form-control border-form"]) !!} @include('includes.form_fields_validation_message', ['name' => 'seo_description'])
@include('includes.form_fields_validation_message', ['name' => 'status'])