{!! Form::open(['method' => 'PUT', 'url' => '/admin/shipping-types/' .$shipping_type->shipping_type_id]) !!}
{!! Form::label('Name') !!}
{!! Form::text('shipping_type_name', $shipping_type->shipping_type_name, ['class' => 'form-control', 'placeholder' => 'Name']) !!}
@if ($errors->has('shipping_type_name'))
{!! $errors->first('shipping_type_name') !!}@endif
{!! Form::label('Price') !!}
{!! Form::number('shipping_type_rate', $shipping_type->shipping_type_rate, ['class' => 'form-control', 'step' => 'any', 'placeholder' => 'Price']) !!}
@if ($errors->has('shipping_type_rate'))
{!! $errors->first('shipping_type_rate') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('shipping_type_is_exist', [1 => 'Active', 0 => 'Inactive'], isset($shipping_type->shipping_type_is_exist) ? $shipping_type->shipping_type_is_exist : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}