@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title')

Shipping Area 3

@endsection @section('main-content')
@if(Session::has('message'))

Alert!

{{Session('message')}}
@endif

Entry

{!! Form::open(['method' => 'PUT', 'url' => '/admin/shipping-area-threes/' .$shipping_area_three->shipping_area_three_id]) !!}
{!! Form::label('Area 1') !!} {!! Form::select('shipping_area_one_id',$shipping_area_ones, $shipping_area_one_id, ['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'], $shipping_area_three->shipping_area_two_id, ['class' => 'form-control','id' => 'shipping_area_two']) !!} @if ($errors->has('shipping_area_two_id')) {!! $errors->first('shipping_area_two_id') !!}@endif
{!! Form::label('Name') !!} {!! Form::text('shipping_area_three_name', $shipping_area_three->shipping_area_three_name, ['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', $shipping_area_three->shipping_area_three_rate, ['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'], isset($shipping_area_three->shipping_area_three_is_exist) ? $shipping_area_three->shipping_area_three_is_exist : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection