{!! 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::label('description','Description') !!}
{!! $category->description !!}
{!! Form::label('master_id','Master Category') !!} {!! Form::select('master_id', $master, $category->master_id, ['class' => 'form-control','style' => 'width:100%','multiple' => true]) !!}
{!! Form::checkbox('skip_export', 1, $category->skip_export) !!} {!! Form::label('skip_export','Skip Export') !!}
@if($category->id > 0) @endif