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

Shipping Area 2

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

Alert!

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

Entry

{!! Form::open(['url' => '/admin/shipping-area-twos']) !!}
{!! Form::label('Area 1') !!} {!! Form::select('shipping_area_one_id',$shipping_area_ones, null, ['class' => 'form-control', 'id' => 'shipping_area_one', 'placeholder' => 'Select Area 1']) !!} @if ($errors->has('shipping_area_one_id')) {!! $errors->first('shipping_area_one_id') !!}@endif
{!! Form::label('Name') !!} {!! Form::text('shipping_area_two_name', null, ['class' => 'form-control', 'placeholder' => 'Name']) !!} @if ($errors->has('shipping_area_two_name')) {!! $errors->first('shipping_area_two_name') !!}@endif
{!! Form::label('Status') !!} {!! Form::select('shipping_area_two_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection