2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/basic')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
|
|
|
403
|
|
|
|
@parent
|
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
2017-06-06 02:32:04 -07:00
|
|
|
<div class="col-md-8 col-md-offset-2">
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-06-06 02:32:04 -07:00
|
|
|
<div style="padding-top: 200px">
|
2023-04-05 16:05:40 -07:00
|
|
|
<img src="{{ config('app.url') }}/img/sad-panda.png" style="width: 200px; height: 200px;" class="pull-left">
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="error-content">
|
2021-09-24 07:21:30 -07:00
|
|
|
<h2><i class="fas fa-exclamation-triangle text-yellow"></i> 403 Forbidden.</h2>
|
2016-03-25 01:18:05 -07:00
|
|
|
<p>
|
2023-04-05 16:05:40 -07:00
|
|
|
Sad panda. You are not authorized to do the thing. Maybe <a href="{{ config('app.url') }}">return to the dashboard</a>, or contact your administrator.
|
2016-03-25 01:18:05 -07:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|