{!! Form::label('title','Title') !!}
{!! Form::text('title' , $category->title , ['class' => 'form-control','placeholder' => 'Title','required'=>'true']) !!}
@if( 1 == 2 )
{!! Form::label('item_parent','Parent') !!}
{!! Form::select('item_parent' , $parent_categories, $category->parent_id , ['class' => 'form-control','placeholder' => 'Select Parent']) !!}
@else
@endif
{!! Form::select('regions[]', App\Modules\Product\Models\EcommerceRegion::items(), $category->available_regions, ['class' => 'form-control page_region_select', 'multiple', 'style' => 'width: 100%;']) !!}
Meta Tags +
{!! 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