File: D:/HostingSpaces/SBogers10/beat-the-barn.komma.nl/resources/views/errors/show.blade.php
@extends('master', [ 'hideCookieMessage' => true])
@section('title', $exception->getStatusCode())
@section('content')
<div class="l-block l-contain">
<div class="c-page-title">
<p>Foutcode {{ $exception->getStatusCode() }}</p>
<h1 class="c-page-title__heading">
@lang('errors.errorHeading')
</h1>
</div>
<div class="s-text">
@if( __('errors.' . $exception->getStatusCode() ) !== 'errors.' . $exception->getStatusCode() )
<h2>{!! __('errors.' . $exception->getStatusCode()) !!}</h2>
@else
<h2>{!! __('errors.default') !!}</h2>
@endif
@if($exception->getMessage())
<p>{{ $exception->getMessage() }}</p>
@endif
@include('components.button', [
'buttonText' => __('errors.homeButton'),
'buttonLink' => '/'
])
</div>
</div>
{{-- <section class="l-block l-contain">--}}
{{-- @include('components.breadcrumb', ['breadcrumbName' => __('errors.404.pageName')])--}}
{{-- @include('components.pageTitle', ['page' => '', 'pageTitle' => __('errors.404.title')])--}}
{{-- <p class="u-spacing-mt4">--}}
{{-- {!! __('errors.404.description', [--}}
{{-- 'sitemap' => (app()->getLocale() == 'nl' ? '/' : '/' . app()->getLocale() . '/' ) . 'sitemap',--}}
{{-- 'homepage' => (app()->getLocale() == 'nl' ? '/' : '/' . app()->getLocale()),--}}
{{-- ])!!}--}}
{{-- </p>--}}
{{-- </section>--}}
@endsection