mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -08:00
ae2f9571b4
Signed-off-by: snipe <snipe@snipe.net>
29 lines
612 B
PHP
29 lines
612 B
PHP
@extends('layouts/basic')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
403
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
|
|
<div style="padding-top: 200px">
|
|
<img src="{{ config('app.url') }}/img/sad-panda.png" style="width: 200px; height: 200px;" class="pull-left">
|
|
<div class="error-content">
|
|
<h2><x-icon type="warning" class="text-yellow" /> 403 Forbidden.</h2>
|
|
<p>
|
|
{!! trans('general.sad_panda', ['link' => config('app.url')]) !!}
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
@stop
|