blob: 9764a027a972a0990ad7cd4930ba0bae1b5c7e34 (
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
|