{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'Township Create') @section('content')
@csrf
Add Township
Name *
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Choose City *
@if ($errors->has('city_id'))
{{ $errors->first('city_id') }}
@endif
Cancel
@endsection