{!! Form::open(['url' => '/admin/upazillas']) !!}
{!! Form::label('District Name') !!}
{{-- {!! Form::select('district_id', $districts, null, ['class' => 'form-control','id' => 'item_type','placeholder' => 'Select District']) !!} --}}
@if ($errors->has('district_id'))
{!! $errors->first('district_id') !!}@endif
{!! Form::label('Upazilla Name') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Upazilla Name']) !!}
@if ($errors->has('name'))
{!! $errors->first('name') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('is_active', ['active' => 'Active', 'inactive' => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}