@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
{{--
@lang('District Create')
--}} @include('components.sectionbar.state-bar')
{{ csrf_field() }}
{!! Form::select('country_id',$country, old('country_id'), array('id' => 'country_id', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!} @if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
{!! Form::text('name', NULL, array('id' => 'name', 'class' => 'form-control', 'placeholder' => trans('State Name'))) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'),'required')) !!} @if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection