mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
15 lines
364 B
PHP
15 lines
364 B
PHP
@extends('templates.base')
|
|
|
|
@section('page-includes')
|
|
<link rel="stylesheet" href="/css/error.css?version={{ Version::get() }}" />
|
|
@endsection
|
|
|
|
@section('page-content')
|
|
<div class="flex-fix">
|
|
<div class="error-page">
|
|
<div class="error-page-content">
|
|
{{ $title }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|