File: D:/HostingSpaces/Neopoints/momsecurity.be/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>
@endsection