@vite(['resources/css/app.css']) @php $tips = trans('marketing.not_found.tips'); if (! is_array($tips)) { $tips = [ __('Prüfe die URL auf Tippfehler.', [], 'de'), ]; } @endphp
404 · {{ __('marketing.not_found.title') }}

{{ __('marketing.not_found.subtitle') }}

@if(request()->path())

{{ __('marketing.not_found.requested_path_label') }}: {{ request()->getRequestUri() }}

@endif

{{ __('marketing.not_found.description') }}

{{ __('marketing.not_found.tip_heading') }}

    @foreach($tips as $index => $tip)
  • {{ $index + 1 }} {{ $tip }}
  • @endforeach