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/SBogers10/komma.pro/resources/views/errors/show.blade.php
@inject( 'response', 'Illuminate\Http\Response' )

@extends('site.master')

@section('title', $code . ' | Komma')

@section('content')

    <section class="c-error-page">
        <div class="contained-layout">

            <div class="c-error-page__message">
                @if($exception->getMessage())

                    <h1 class="c-error-page__title">
                        {{ $code }}
                    </h1>
                    <div class="c-error-page__subtitle">{{ $exception->getMessage() }}</div>

                @elseif(isset($message))

                    <h1 class="c-error-page__title">
                        {{ $code }}
                    </h1>
                    <div class="c-error-page__subtitle">{{ $message }}</div>

                @else

                    <h1 class="c-error-page__title">
                        {{ $code }}
                    </h1>
                    <div class="c-error-page__subtitle">Oops something went wrong</div>

                @endif

                <a href="/" class="c-error-page__button button white stroked">Naar home</a>

            </div>
        </div>
    </section>

@endsection