File: D:/HostingSpaces/marisrental/boldt.tech/resources/views/errors/500.blade.php
@extends('site.base')
@section('base-content')
<header class="c-header">
<div class="c-header__main js-header-main">
<a class="c-header__logo" href="/">
@include('site.components.icons.logo')
</a>
</div>
</header>
<section class="error-page-message">
<div class="l-contain simplepage">
<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>
</div>
</section>
@endsection