{!! Form::label('name', 'Title:') !!}
{!! Form::text('name', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter post title ...', 'onblur' => 'ajax_request();', 'maxlength' => '255']) !!}
{!! Form::label('category_id', 'Category:') !!}
{!! Form::select('category_id', $data['categories'], null,['class'=>'form-control', 'required', 'placeholder' => 'Please Select ...']) !!}
{!! Form::label('heading_content', 'Content Heading:') !!}
{!! Form::text('heading_content', null,['class'=>'form-control', 'placeholder'=>'Enter content heading ...', 'maxlength' => '255']) !!}
{!! Form::label('short_content', 'Short Content:') !!}
{!! Form::textarea('short_content', null,['class'=>'form-control', 'required', 'placeholder'=>'Content ...', 'rows'=>'3']) !!}
{!! Form::label('full_content', 'Full Content:') !!}
{!! Form::textarea('full_content', null,['class'=>'form-control ckeditor', 'placeholder'=>'Content ...', 'rows'=>'3']) !!}
{!! Form::label('featured_content', 'Featured Content:') !!}
{!! Form::textarea('featured_content', null,['class'=>'form-control ckeditor', 'placeholder'=>'Content ...', 'rows'=>'3']) !!}
{!! Form::label('', 'Show On Home Page:') !!}
{!! Form::label('publish_date', 'Publish Date:') !!}
{!! Form::date('publish_date', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter publish date ...']) !!}