master

laravel/framework

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

401.blade.php

TLDR

The provided file is a Blade template file that generates a 401 error page for unauthorized access. It extends the errors::minimal layout and displays the title, code, and message for the 401 error.

@extends('errors::minimal')

@section('title', __('Unauthorized'))
@section('code', '401')
@section('message', __('Unauthorized'))