TRF Certest first commit

This commit is contained in:
2025-02-26 08:57:46 +01:00
commit 3ce064a108
2524 changed files with 475404 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
@extends('layouts.install')
@section('content')
@include('install.steps', ['steps' => [
'welcome' => 'selected done',
'requirements' => 'selected done',
'permissions' => 'selected done',
'database' => 'selected done',
'installation' => 'selected done',
'complete' => 'selected error'
]])
<div class="step-content">
<h3>Whoops!</h3>
<hr>
<p><strong>There was something wrong during the installation!</strong></p>
<p>Please check your log located inside <code>storage/logs</code> directory to see what's going on.</p>
<a class="btn btn-primary float-right mt-3" href="{{ route('install.start') }}">
<i class="fa fa-undo"></i>
Try Again
</a>
<div class="clearfix"></div>
</div>
@stop