@extends('layouts.app') @section('content') @php // Quick links: editable in Foundation Settings → 404 Page. Fall back to a // sensible default set when the repeater is empty. $links = array_values(array_filter( $options['error_404_links'] ?? [], fn ($l) => ! empty($l['label']) && ! empty($l['url']) )); if (empty($links)) { $links = [ ['label' => 'Events', 'url' => home_url('/events')], ['label' => 'Grants', 'url' => home_url('/grants')], ['label' => 'Donate', 'url' => home_url('/donate')], ['label' => 'Contact', 'url' => home_url('/contact')], ]; } @endphp
{{-- Background gradient --}}
{{-- Oversized faint watermark --}} {{-- Content --}}
404 Error

Page not found

The page you’re looking for doesn’t exist or may have moved. Let’s get you back on track.

Back to Home
@endsection