You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
443 B
17 lines
443 B
2 years ago
|
@extends('errors.layout')
|
||
|
|
||
|
@php
|
||
|
$error_number = 401;
|
||
|
@endphp
|
||
|
|
||
|
@section('title')
|
||
|
Unauthorized action.
|
||
|
@endsection
|
||
|
|
||
|
@section('description')
|
||
|
@php
|
||
|
$default_error_message = "Please <a href='javascript:history.back()''>go back</a> or return to <a href='".url('')."'>our homepage</a>.";
|
||
|
@endphp
|
||
|
{!! isset($exception)? ($exception->getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message !!}
|
||
|
@endsection
|