@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New district @parent @stop {{-- Page content --}} @section('content')

Districts

Create a new district

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/districts']) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('code', 'Code: ') !!} {!! Form::text('code', null, ['class' => 'form-control']) !!}
{!! Form::label('region_id', 'Region: ') !!} {!! Form::select('region_id', $region, null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop