{!! Form::open(['url' => '/admin/attribute-sets']) !!}
{!! Form::label('name','Name') !!}
{!! Form::text('attribute_set_name','',['class' => 'form-control', 'placeholder' => 'Name']) !!}
@if ($errors->has('attribute_set_name'))
{!! $errors->first('attribute_set_name') !!}
@endif
{!! Form::label('type','Field Type') !!}
{!! Form::select('field_type',['text' => 'Text','dropdown' => 'Dropdown'],null,['class' =>'form-control', 'placeholder'=> 'Select type']) !!}
@if ($errors->has('field_type'))
{!! $errors->first('field_type') !!}
@endif
{!! Form::label('type','Sorting Type') !!}
{!! Form::select('sort_by',['default' => 'Default','alphabetic' => 'Alphabetic'],null,['class' =>'form-control', 'placeholder'=> 'Select Sorting Type']) !!}
@if ($errors->has('sort_by'))
{!! $errors->first('sort_by') !!}
@endif
{!! Form::label('status','Status') !!}
{!! Form::select('attribute_set_is_exist',['1' => 'Active','0' => 'Inactive'],null,['class' =>'form-control']) !!}
@if ($errors->has('attribute_set_is_exist'))
{!! $errors->first('attribute_set_is_exist') !!}
@endif
{!! Form::close() !!}