{!! Form::open(['url' => '/admin/desktop-builder-types']) !!}
{!! Form::label('Type Name') !!}
{!! Form::text('desktop_b_type_name', null, ['class' => 'form-control', 'placeholder' => 'Enter Type Name']) !!}
@if ($errors->has('desktop_b_type_name'))
{!! $errors->first('desktop_b_type_name') !!}
@endif
{!! Form::label('Priority') !!}
{!! Form::select('desktop_b_type_priority', $priority, null, ['class' => 'form-control', 'placeholder' => 'Select Priority', 'id' => 'desktop_b_type_priority']) !!}
@if ($errors->has('desktop_b_type_priority'))
{!! $errors->first('desktop_b_type_priority') !!}
@endif
{!! Form::label('Status') !!}
{!! Form::select('desktop_b_type_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}