diskfloppy.me/resources/views/errors/generic-error.blade.php

10 lines
214 B
PHP
Raw Normal View History

2023-07-16 20:02:51 +00:00
@extends('layouts.minimal')
@section('title', 'Error 401: Unauthorized User!')
@section('content')
<h1>{{ $error }}</h1>
2023-07-25 23:08:58 +00:00
<hr>
2023-07-16 20:02:51 +00:00
@if(isset($description))
<p>{{ $description }}</p>
@endif
@stop