{!! Form::open(['url' => '/admin/item-types']) !!}
{!! Form::label('Name') !!}
{!! Form::text('item_type_name', null, ['class' => 'form-control', 'placeholder' => 'Name']) !!}
@if ($errors->has('item_type_name'))
{!! $errors->first('item_type_name') !!}@endif
{!! Form::label('Synonyms') !!}
{!! Form::text('item_type_synonyms', null, ['class' => 'form-control', 'placeholder' => 'Synonyms']) !!}
@if ($errors->has('item_type_synonyms'))
{!! $errors->first('item_type_synonyms') !!}@endif
{!! Form::label('Code') !!}
{!! Form::text('item_type_code', null, ['class' => 'form-control', 'placeholder' => 'Code']) !!}
@if ($errors->has('item_type_code'))
{!! $errors->first('item_type_code') !!}@endif
{!! Form::label('Attribute Sets') !!}
{!! Form::select('item_type_attribute_sets[]',$attribute_sets, null, ['class' => 'form-control','id' => 'item_type_attribute_sets' ,'multiple' => 'multiple']) !!}
{!! Form::label('Expanded') !!}
{!! Form::select('expanded[]',$attribute_sets, null, ['class' => 'form-control','id' => 'expanded' ,'multiple' => 'multiple']) !!}
{!! Form::label('Home') !!}
{!! Form::select('item_type_is_home', [0 => 'No',1 => 'Yes'], null, ['class' => 'form-control']) !!}
{!! Form::label('Status') !!}
{!! Form::select('item_type_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::label('Point') !!}
{!! Form::number('point', 0, ['class' => 'form-control', 'placeholder' => 'Point']) !!}
{!! Form::label('Point Type') !!}
{!! Form::select('point_type', $pointTypes, 'fixed', ['class' => 'form-control', 'id' => 'pointType']) !!}
{!! Form::close() !!}