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

Shipping Area 1

@endsection @section('main-content')
@if(Session::has('error-message'))
{{Session('error-message')}}
@endif

Entry

{!! Form::open(['url' => '/admin/shipping-area-ones']) !!}
{!! Form::label('Name') !!} {!! Form::text('shipping_area_one_name', null, ['class' => 'form-control', 'placeholder' => 'Name']) !!} @if ($errors->has('shipping_area_one_name')) {!! $errors->first('shipping_area_one_name') !!}@endif
{!! Form::label('Delivery Cost') !!} {!! Form::number('delivery_cost', null, ['class' => 'form-control', 'placeholder' => 'Delivery cost', 'step' => 'any']) !!} @if ($errors->has('delivery_cost')) {!! $errors->first('delivery_cost') !!} @endif
{!! Form::label('Code') !!} {!! Form::text('inv_zone_code', null, ['class' => 'form-control', 'placeholder' => 'Code']) !!} @if ($errors->has('inv_zone_code')) {!! $errors->first('inv_zone_code') !!}@endif
{!! Form::hidden('pickup_point', null, ['id' => 'pickup_point']) !!}
{!! Form::label('Status') !!} {!! Form::select('shipping_area_one_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @section('javascripts') @endsection