{{-- Logo --}}
Logo

Installation

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