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/SBogers47/leden.ehbocranendonck.nl/resources/views/errors/show.blade.php
@inject( 'response', 'Illuminate\Http\Response' )

@extends('site.master')

@section('title', $code . ' | '. \Config::get('site.company.name'))

@section('content')

    <section id="error-page-message">
        <div class="grid-row">
            <div class="kms-content">
                @if($exception->getMessage())

                    <h1>Foutcode {{ $code }}</h1>
                    {{ $exception->getMessage() }}

                @elseif(isset($message))

                    <h1>Foutcode {{ $code }}</h1>
                    <p>{{ $message }}</p>

                @else

                    <h1>Foutcode {{ $code }}</h1>
                    <p>Oops something went wrong</p>

                @endif
            </div>
        </div>
    </section>

@endsection