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