osb/resources/views/errors/403.blade.php

31 lines
705 B
PHP
Raw Normal View History

2020-04-17 06:30:51 +00:00
@extends('adminlte::layouts.app')
2018-05-20 12:53:14 +00:00
@section('htmlheader_title')
2020-04-17 06:30:51 +00:00
Bad Authentication
@endsection
@section('page_title')
403
@endsection
@section('contentheader_title')
Authentication Required
@endsection
@section('contentheader_description')
Authentication Failed
2018-05-20 12:53:14 +00:00
@endsection
@section('main-content')
<div class="error-page">
<h2 class="headline text-red">403</h2>
<div class="error-content">
2020-04-17 06:30:51 +00:00
<h3><i class="fa fa-warning text-red pt-4"></i> Oops! Bad Authentication</h3>
2018-05-20 12:53:14 +00:00
<p>
Sorry, your authentication failed.<br>
Message: <b>{{ $exception->getMessage() }}</b><br>
Back to <a href="{{ url('login') }}">login</a>
</p>
<br>
</div>
</div><!-- /.error-page -->
@endsection