@extends('admin.template.master') @section('title')

Shipping Zone

@endsection @section('main-content')

Entry

{!! Form::open(['url' => '/admin/shipping-zones']) !!}
{!! Form::label('Name') !!} {!! Form::text('shipping_zone_name', null, ['class' => 'form-control', 'placeholder' => 'Name']) !!} @if ($errors->has('shipping_zone_name')) {!! $errors->first('shipping_zone_name') !!}@endif
{!! Form::label('Rate') !!} {!! Form::number('shipping_zone_rate', null, ['class' => 'form-control', 'step' => 'any', 'placeholder' => 'Rate']) !!} @if ($errors->has('shipping_zone_rate')) {!! $errors->first('shipping_zone_rate') !!}@endif
{!! Form::label('Status') !!} {!! Form::select('shipping_zone_is_exist', [1 => 'Active', 0 => 'Inactive'], isset($shipping_type->shipping_zone_is_exist) ? $shipping_type->shipping_zone_is_exist : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection