File: D:/HostingSpaces/Eurotools/euro-tools.nl/resources/views/errors/404.blade.php
@inject( 'response', 'Illuminate\Http\Response' )
@extends('site.master')
@section('title', $statusCode . ' | '. \Config::get('site.company.name'))
@section('content')
<section id="error-page-message">
<div class="grid-row">
<div class="kms-content">
@if($exception->getMessage())
<h1>{{ $exception->getMessage() }}</h1>
@elseif(isset($message))
<h1>{{ $message }}</h1>
<p>{!! __('errors.not_found_apologies') !!}</p>
@else
<h1>Foutcode {{ $statusCode }}</h1>
@endif
</div>
</div>
</section>
@endsection