HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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