master

laravel/framework

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

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