mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
29 lines
700 B
PHP
29 lines
700 B
PHP
@extends('layouts/basic')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
403
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
|
|
<div class="error-page" style="padding-top: 200px">
|
|
<img src="{{ config('app.url') }}/assets/img/sad-panda.png" style="width: 200px; height: 200px;" class="pull-left">
|
|
<div class="error-content">
|
|
<h3><i class="fa fa-warning text-yellow"></i> 403 Forbidden.</h3>
|
|
<p>
|
|
Sad panda. You are not authorized to do the thing. Maybe <a href="{{ route('home') }}">return to the dashboard</a>, or contact your administrator.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
@stop
|