Skip to content

Commit

Permalink
corrected paths on error pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed Jan 19, 2025
1 parent 274b8c2 commit 10b4d46
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions resources/views/errors/401.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-app-layout>
<x-layouts.app>
@section('title', '401')

<h3>401 - You do not have the correct permissions.</h3>
Expand All @@ -7,4 +7,4 @@

<h4>{{ $message ?? '' }}</h4>

</x-app-layout>
</x-layouts.app>
4 changes: 2 additions & 2 deletions resources/views/errors/404.blade.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<x-app-layout>
<x-layouts.app>
@section('title', '404')

<h3 class="text-center mt-10">404 - The requested page was not found.</h3>

@include('errors.messages')

</x-app-layout>
</x-layouts.app>

4 changes: 2 additions & 2 deletions resources/views/errors/500.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-app-layout>
<x-layouts.app>
@section('title', '500')

<h3 class="text-center mt-10">500 - There has been an internal server error.</h3>
Expand All @@ -7,4 +7,4 @@

<h4 class="text-center mt-10">{{ $message ?? '' }}</h4>

</x-app-layout>
</x-layouts.app>

0 comments on commit 10b4d46

Please sign in to comment.