{{-- Logo --}}
{{-- Progress indicator --}}
Installation
@php
$stepLabels = ['Systemcheck', 'Datenbank', 'Einstellungen', 'E-Mail', 'Abschluss'];
@endphp
@for ($i = 1; $i <= 5; $i++)
@if ($i < 5)
@endif
@endfor
{{-- Flash messages --}}
@if (session('error'))
@if ($i < $currentStep)
@else
{{ $i }}
@endif
{{ $stepLabels[$i - 1] }}
{{ session('error') }}
@endif
@if (session('success'))
{{ session('success') }}
@endif
{{-- Step content --}}
{{ $slot }}