{!! Form::label('Item Type') !!}
{!! Form::select('item_type_id', $itemTypes, null, ['placeholder' => 'Select item type', 'class' => 'form-control', 'id' => 'item_type_id']) !!}
@if ($errors->has('item_type_id'))
{!! $errors->first('item_type_id') !!}@endif
{!! Form::label('Brand') !!}
{!! Form::select('brand_id', [ 0 => 'Select brand'], null, ['class' => 'form-control', 'id' => 'brand_id']) !!}
{!! Form::label('INV Code') !!}
{!! Form::text('product_code_inv', null, ['placeholder' => 'INV Code', 'class' => 'form-control', 'id' => 'product_code_inv']) !!}
@endsection
@section('javascripts')
{!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!}
@endsection