Extracted not found text into its own simple blade file

Related/intended for #2796
This commit is contained in:
Dan Brown 2021-06-13 13:53:59 +01:00
parent b5caaa73b7
commit 58117bcf2d
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
2 changed files with 10 additions and 3 deletions

View File

@ -6,9 +6,11 @@
<div class="card mb-xl px-l pb-l pt-l">
<div class="grid half v-center">
<div>
<h1 class="list-heading">{{ $message ?? trans('errors.404_page_not_found') }}</h1>
<h5>{{ $subtitle ?? trans('errors.sorry_page_not_found') }}</h5>
<p>{{ $details ?? trans('errors.sorry_page_not_found_permission_warning') }}</p>
@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'),
])
</div>
<div class="text-right">
@if(!signedInUser())

View File

@ -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.--}}
<h1 class="list-heading">{{ $title }}</h1>
<h5>{{ $subtitle }}</h5>
<p>{{ $details }}</p>