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">
|
2017-06-06 00:51:41 -07:00
|
|
|
<div class="col-md-8 col-md-offset-2">
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-06-06 00:51:41 -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">
|
|
|
|
<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.
|
2017-03-03 19:07:57 -08:00
|
|
|
You should maybe <a href="{{ url('/') }}">return to the dashboard</a>.
|
2016-03-25 01:18:05 -07:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|