master

laravel/framework

Last updated at: 29/12/2023 09:23

404.blade.php

TLDR

This file is a view file for handling the "Not Found" exception. It extends the "minimal" error template and displays a 404 error message.

@extends('errors::minimal')

@section('title', __('Not Found'))
@section('code', '404')
@section('message', __('Not Found'))