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

@extends('site.master',['namespace' => 'response-40x'])

@section('content')

    <section class="error-page-message">

        @if($code == '404')

            <h1>@lang('errors.not_found')</h1>

        @else

            @if($exception->getMessage())

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

            @elseif(isset($message))

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

            @else

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

            @endif

        @endif

    </section>

@endsection