@extends('layouts.dashboard') @section('title', $holiday->exists ? 'Edit public holiday' : 'Add public holiday') @section('content')

{{ $holiday->exists ? 'Edit public holiday' : 'Add public holiday' }}

@csrf @if ($holiday->exists) @method('PUT') @endif
@foreach ($areas as $area)

Matches a town's area column — a Devonport-only holiday won't block a Launceston delivery, and vice versa.

@endsection