mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
9338b37b74
Webpack has fucked everything. I hate everything.
30 lines
685 B
PHP
30 lines
685 B
PHP
@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">
|
|
|
|
<div style="padding-top: 200px">
|
|
<img src="{{ url('/') }}/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> 404 Page not found.</h3>
|
|
<p>
|
|
Sad panda. We could not find the page you were looking for.
|
|
You should maybe <a href="{{ url('/') }}">return to the dashboard</a>.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
@stop
|