{!! Form::open(['url' => '/admin/shipping-area-threes']) !!}
{!! Form::label('Area 1') !!}
{!! Form::select('shipping_area_one_id',$shipping_area_ones, null, ['class' => 'form-control', 'placeholder' => 'Select Area 1','id' => 'shipping_area_one']) !!}
@if ($errors->has('shipping_area_one_id'))
{!! $errors->first('shipping_area_one_id') !!}@endif
{!! Form::label('Area 2') !!}
{!! Form::select('shipping_area_two_id',[null => 'Select Area 2'], null, ['class' => 'form-control','id' => 'shipping_area_two']) !!}
@if ($errors->has('shipping_area_two_id'))
{!! $errors->first('shipping_area_two_id') !!}@endif
{!! Form::label('Area 3') !!}
{!! Form::text('shipping_area_three_name', null, ['class' => 'form-control', 'placeholder' => 'Name']) !!}
@if ($errors->has('shipping_area_three_name'))
{!! $errors->first('shipping_area_three_name') !!}@endif
{!! Form::label('Rate') !!}
{!! Form::text('shipping_area_three_rate', null, ['class' => 'form-control', 'step' => 'any', 'placeholder' => 'Rate']) !!}
@if ($errors->has('shipping_area_three_rate'))
{!! $errors->first('shipping_area_three_rate') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('shipping_area_three_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}