diff --git a/web/resources/views/errors/400.blade.php b/web/resources/views/errors/400.blade.php new file mode 100644 index 0000000..c6dce28 --- /dev/null +++ b/web/resources/views/errors/400.blade.php @@ -0,0 +1,19 @@ +@extends('layouts.app') + +@section('title', 'Bad Request') + +@section('content') +
+ + + There was a problem with your request. If you believe this is an error on our part, contact us at support@gtoria.net! + + +
+ Home + Back +
+
+
+
+@endsection diff --git a/web/resources/views/errors/401.blade.php b/web/resources/views/errors/401.blade.php new file mode 100644 index 0000000..e47f8cd --- /dev/null +++ b/web/resources/views/errors/401.blade.php @@ -0,0 +1,19 @@ +@extends('layouts.app') + +@section('title', 'Unauthorized') + +@section('content') +
+ + + You're missing the proper authentication to view this page. If you believe this is an error, contact us at support@gtoria.net! + + +
+ Home + Back +
+
+
+
+@endsection diff --git a/web/resources/views/errors/403.blade.php b/web/resources/views/errors/403.blade.php new file mode 100644 index 0000000..cb2b061 --- /dev/null +++ b/web/resources/views/errors/403.blade.php @@ -0,0 +1,19 @@ +@extends('layouts.app') + +@section('title', 'Forbidden') + +@section('content') +
+ + + You don't have permission to view this page. If you believe this is an error, contact us at support@gtoria.net! + + +
+ Home + Back +
+
+
+
+@endsection diff --git a/web/resources/views/errors/404.blade.php b/web/resources/views/errors/404.blade.php new file mode 100644 index 0000000..554fad8 --- /dev/null +++ b/web/resources/views/errors/404.blade.php @@ -0,0 +1,23 @@ +@php +$errorTitles = ['OH NOES!!!', 'BZZT', 'ERROR', 'UH OH.']; +@endphp + +@extends('layouts.app') + +@section('title', 'Not Found') + +@section('content') +
+ + + We've looked far and wide and weren't able to find the page you were looking for. If you believe this is an error, contact us at support@gtoria.net! + + +
+ Home + Back +
+
+
+
+@endsection diff --git a/web/resources/views/errors/500.blade.php b/web/resources/views/errors/500.blade.php new file mode 100644 index 0000000..26217ba --- /dev/null +++ b/web/resources/views/errors/500.blade.php @@ -0,0 +1,19 @@ +@extends('layouts.app') + +@section('title', 'Internal Server Error') + +@section('content') +
+ + + Oops, we ran into an issue while trying to process your request, please try again later in a few minutes. If the issue persists after a few minutes, please contact us at support@gtoria.net. + + +
+ Home + Back +
+
+
+
+@endsection