diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php index d4d8ed76b..c4a5dc782 100644 --- a/resources/views/errors/404.blade.php +++ b/resources/views/errors/404.blade.php @@ -6,9 +6,11 @@
-

{{ $message ?? trans('errors.404_page_not_found') }}

-
{{ $subtitle ?? trans('errors.sorry_page_not_found') }}
-

{{ $details ?? trans('errors.sorry_page_not_found_permission_warning') }}

+ @include('errors.parts.not-found-text', [ + 'title' => $message ?? trans('errors.404_page_not_found'), + 'subtitle' => $subtitle ?? trans('errors.sorry_page_not_found'), + 'details' => $details ?? trans('errors.sorry_page_not_found_permission_warning'), + ])
@if(!signedInUser()) diff --git a/resources/views/errors/parts/not-found-text.blade.php b/resources/views/errors/parts/not-found-text.blade.php new file mode 100644 index 000000000..5b107b29b --- /dev/null +++ b/resources/views/errors/parts/not-found-text.blade.php @@ -0,0 +1,5 @@ +{{--The below text may be dynamic based upon language and scenario.--}} +{{--It's safer to add new text sections here rather than altering existing ones.--}} +

{{ $title }}

+
{{ $subtitle }}
+

{{ $details }}

\ No newline at end of file