{!! Form::open(['route' => 'item-type-groups.store']) !!}
{!! Form::label('Item Type') !!}
{!! Form::select('item_type_id', $itemTypes, null, ['class' => 'form-control', 'placeholder' => 'Select item type', 'id' => 'item_type_id']) !!}
@if ($errors->has('item_type_id'))
{!! $errors->first('item_type_id') !!}@endif
{!! Form::label('Group') !!}
{!! Form::select('groups', $groups, null, ['class' => 'form-control', 'placeholder' => 'Select group', 'id' => 'groups']) !!}
@if ($errors->has('groups'))
{!! $errors->first('groups') !!}@endif
{!! Form::label('Group Priority') !!}
{!! Form::select('group_priority', $groupPriorities, null, ['class' => 'form-control', 'placeholder' => 'Select group priority', 'id' => 'group_priority']) !!}
@if ($errors->has('group_priority'))
{!! $errors->first('group_priority') !!}@endif
{!! Form::close() !!}