File: D:/HostingSpaces/SBogers10/inzigd.komma.pro/resources/views/errors/show.blade.php
@extends('site.simple', ['hideCookieMessage' => true])
@section('title', $exception->getStatusCode() . ' | '. config('site.company.name'))
@section('content')
{{-- @include('site.organisms.header')--}}
<section class="error-page-message">
<div class="s-text u-text-align-center" style="padding: 100px 0;">
@if($exception->getMessage())
<h1>Foutcode {{ $exception->getStatusCode() }}</h1>
<p>{{ $exception->getMessage() }}</p>
@else
<h1>Foutcode {{ $exception->getStatusCode() }}</h1>
@if( __('errors.' . $exception->getStatusCode() ) !== 'errors.' . $exception->getStatusCode() )
<p>{!! __('errors.' . $exception->getStatusCode()) !!}</p>
@else
<p>{!! __('errors.default') !!}</p>
@endif
@endif
<div>
<span style="display: inline-block; margin-top: 20px;">
@include('site.components.button', [
'buttonLink' => '/',
'buttonText' => __('errors.to_home'),
])
</span>
<span style="padding: 0 20px;">of</span>
<span style="display: inline-block; margin-top: 20px;">
@include('site.components.button', [
'buttonLink' => '/sitemap',
'buttonText' => __('errors.or_sitemap'),
])
</span>
</div>
</div>
</section>
{{-- @include('site.organisms.footer')--}}
@endsection