From c70b82b611c744fd6cc82c62f616c31e6584d3b7 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 10 Apr 2024 18:07:32 -0400 Subject: [PATCH] Add a title to the 404 page --- resources/views/errors/404.blade.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php index ddf23a8..f9abf7c 100644 --- a/resources/views/errors/404.blade.php +++ b/resources/views/errors/404.blade.php @@ -1 +1,3 @@ -@extends('templates.error') +@extends('templates.error', [ + 'title' => 'Page Not Found' +])