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

30 lines
717 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
@extends('layouts/basic')
{{-- Page title --}}
@section('title')
404
@parent
@stop
{{-- Page content --}}
@section('content')
<div class="row">
<div class="col-md-8 col-md-offset-2">
2016-03-25 01:18:05 -07:00
<div style="padding-top: 200px">
<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">
<h2><i class="fas fa-exclamation-triangle text-yellow"></i> 404 Page not found.</h2>
2016-03-25 01:18:05 -07:00
<p>
Sad panda. We could not find the page you were looking for.
You should maybe <a href="{{ config('app.url') }}">return to the dashboard</a>.
2016-03-25 01:18:05 -07:00
</p>
</div>
</div>
@stop