12 lines
279 B
PHP
Raw Normal View History

2015-12-28 17:19:23 +00:00
@extends('base')
2015-09-29 21:25:03 +01:00
@section('content')
2015-12-28 17:19:23 +00:00
<div class="container">
<h1 class="text-muted">{{ $message or 'Page Not Found' }}</h1>
<p>Sorry, The page you were looking for could not be found.</p>
<a href="{{ baseUrl('/') }}" class="button">Return To Home</a>
2015-12-28 17:19:23 +00:00
</div>
2015-09-29 21:25:03 +01:00
@stop