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

Add or remove states from this region.

@if($availableStates->count())
@foreach($availableStates as $state)
id, old('states', $assignedStateIds)) ? 'checked' : '' }}>
@endforeach
@else

No states available.

@endif
Cancel
@endsection