You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
701 B
PHTML

@extends('layouts.blank')
@section('content')
<div class="h-alt-hf d-flex flex-column align-items-center justify-content-center text-center">
<h1 class="page-error color-fusion-500">
<i class="fal fa-exclamation-triangle text-danger"></i>
ERROR <span class="text-gradient">{{ @$errorCode }}</span>
<small class="fw-500">
{{ @$exception->getMessage() }}
</small>
</h1>
<h3 class="fw-500 mb-5 d-none">
{{ @$exception->getFile() }} ({{ @$exception->getLine() }})
</h3>
</div>
@stop
@push('scripts')
<script>
$(document).ready(function() {
});
</script>
@endpush