@extends('layouts.app') @section('title', 'Edit Zone') @section('page-title', 'Edit Zone') @section('content')
Edit Zone: {{ $zone->name }}
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
Zone code cannot be changed after creation
@error('description')
{{ $message }}
@enderror
@error('branch_id')
{{ $message }}
@enderror
Select the branch this zone belongs to
is_active) ? 'checked' : '' }}>
Inactive zones cannot be used for new sub zones
Back to Zones
@endsection