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

Select LGAs to assign to this state. Only LGAs not already assigned to another state are shown.

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

No unassigned LGAs available. Create LGAs first.

@endif
Cancel
@endsection