{!! Form::label('title','Title') !!} {!! Form::text('title' , $category->title , ['class' => 'form-control','placeholder' => 'Title','required'=>'true']) !!}
{!! Form::label('item_parent','Parent') !!} {!! Form::select('item_parent' , $parent_categories, $category->parent_id , ['class' => 'form-control','placeholder' => 'Select Parent']) !!}
{!! Form::label('description','Description') !!} {{--
{!! $category->description !!}
--}} {{-- --}} {!! RTEForm::rte('description', $category->description) !!}
{!! Form::label('title','Title') !!} {!! Form::text('meta[title]' , $meta_title , ['class' => 'form-control','placeholder' => 'Title']) !!}
{!! Form::label('description','Description') !!} {!! Form::textarea('meta[description]' , $meta_description , ['rows' => 2,'class' => 'form-control','placeholder' => 'Description']) !!}
{!! Form::label('title','Keywords') !!} {!! Form::text('meta[keywords]' , $meta_keywords , ['class' => 'form-control','placeholder' => 'Keywords']) !!}
@if($category->id > 0) @endif