403.blade.php
TLDR
This file is a Blade template file that is used to display a "Forbidden" error with a status code of 403.
@extends('errors::minimal')
@section('title', __('Forbidden'))
@section('code', '403')
@section('message', __($exception->getMessage() ?: 'Forbidden'))