{!! Form::open(['method' => 'PATCH', 'url' => '/admin/desktop-builder-descriptions/' .$desktop_b_desc->desktop_b_descs_id]) !!}
{!! Form::label('Description For') !!}
{!! Form::select('desc_type',$desc_types,$desktop_b_desc->desc_type,['class' =>'form-control', 'id' => 'desc_type']) !!}
@if ($errors->has('desc_type'))
{!! $errors->first('desc_type') !!}
@endif
{!! Form::label('Item Type') !!}
{!! Form::select('item_type_id',$item_types,$desktop_b_desc->item_type_id,['class' =>'form-control', 'placeholder'=> 'Select Item type', 'id' => 'item_type_id']) !!}
@if (Session::has('message') && Session('message')=='Select Item Type')
{!! Session('message') !!}
@endif
{!! Form::label('Brand') !!}
{!! Form::select('brand_id',$brands,$desktop_b_desc->brand_id,['class' =>'form-control', 'placeholder'=> 'Select Brand', 'id' => 'brand_id']) !!}
@if (Session::has('message') && Session('message')=='Select Brand')
{!! Session('message') !!}
@endif
{!! Form::label('Description') !!}
{!! Form::textarea('desc', $desktop_b_desc->desc, ['class' => 'form-control', 'rows' => 20, 'placeholder' => 'Description', 'id' => 'desc']) !!}
@if ($errors->has('desc'))
{!! $errors->first('desc') !!}
@endif
{!! Form::label('Status') !!}
{!! Form::select('desktop_b_descs_is_exist', [1 => 'Active', 0 => 'Inactive'], $desktop_b_desc->desktop_b_descs_is_exist, ['class' => 'form-control']) !!}