@extends('layouts.app') @section('title', 'Edit District') @section('content')
← Back to Districts

Edit District

@csrf @method('PUT') @php $fields = ['name']; $fieldLabels = [ 'name' => 'District Name', ]; $placeholders = [ 'name' => 'Enter district name', ]; $divisions = ['Barishal', 'Chattogram', 'Dhaka', 'Khulna', 'Mymensingh', 'Rajshahi', 'Rangpur', 'Sylhet']; @endphp @foreach($fields as $field)
@error($field) {{ $message }} @enderror
@endforeach
@error('division') {{ $message }} @enderror
Cancel
@endsection