@extends('admin.layouts.app') @section('title', 'Edit State') @section('content')
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror

Add or remove LGAs from this state.

@if($availableLgas->count())
@foreach($availableLgas as $lga)
id, old('lgas', $assignedLgaIds)) ? 'checked' : '' }}>
@endforeach
@else

No LGAs available.

@endif
Cancel
@endsection