phpvms/resources/views/layouts/default/errors/401.blade.php

13 lines
377 B
PHP
Raw Normal View History

@extends("layouts.${SKIN_NAME}.app")
2017-12-24 01:17:29 +08:00
@section('title', 'not authorized')
2017-08-13 00:46:05 +08:00
@section('content')
<div class="container registered-page">
<h3>Unauthorized</h3>
<p>
Well, this is embarrassing, you are not authorized to access or perform this function.
Click <a href="{{ url()->previous() }}">here</a> to go back to the home page.
</p>
2017-08-13 00:46:05 +08:00
</div>
2017-12-24 01:17:29 +08:00
@endsection