snipe-it/resources/views/errors/403.blade.php

29 lines
675 B
PHP
Raw Normal View History

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">
<img src="{{ 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">
2020-03-31 23:36:56 -07:00
<h2><i class="fa fa-warning text-yellow"></i> 403 Forbidden.</h2>
2016-03-25 01:18:05 -07:00
<p>
2017-03-03 19:07:57 -08:00
Sad panda. You are not authorized to do the thing. Maybe <a href="{{ url('/') }}">return to the dashboard</a>, or contact your administrator.
2016-03-25 01:18:05 -07:00
</p>
</div>
</div>
@stop