blob: 6f08ea51da6057f5c6ca1663117098a11eb146c1 (
plain)
1
2
3
4
5
6
7
8
9
|
@extends('layouts.minimal')
@section('title', 'Error 401: Unauthorized User!')
@section('content')
<h1>{{ $error }}</h1>
<hr>
@if(isset($description))
<p>{{ $description }}</p>
@endif
@stop
|