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'))