From 42897aab14a753224ab7bc224e9d69ce2e9de62d Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 31 May 2018 15:59:05 -0600 Subject: [PATCH] Add error views --- resources/views/errors/403.blade.php | 13 +++++++++++++ resources/views/errors/404.blade.php | 13 +++++++++++++ resources/views/errors/503.blade.php | 14 ++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 resources/views/errors/403.blade.php create mode 100644 resources/views/errors/404.blade.php create mode 100644 resources/views/errors/503.blade.php diff --git a/resources/views/errors/403.blade.php b/resources/views/errors/403.blade.php new file mode 100644 index 000000000..8a7ecc329 --- /dev/null +++ b/resources/views/errors/403.blade.php @@ -0,0 +1,13 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+

403 - Forbidden

+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php new file mode 100644 index 000000000..9ab90868f --- /dev/null +++ b/resources/views/errors/404.blade.php @@ -0,0 +1,13 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+

404 - Page Not Found

+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/errors/503.blade.php b/resources/views/errors/503.blade.php new file mode 100644 index 000000000..e479008cf --- /dev/null +++ b/resources/views/errors/503.blade.php @@ -0,0 +1,14 @@ +@extends('layouts.app') + +@section('content') +
+
+
+
+

503 - Service Unavailable

+

Our services are overloaded at the moment, please try again later.

+
+
+
+
+@endsection \ No newline at end of file