{{-- Header --}}
BDHealthSync HMS Installation Wizard
{{-- Progress Steps --}}
    @php $steps = [ ['route' => 'install.requirements', 'label' => '1. Requirements'], ['route' => 'install.database', 'label' => '2. Database'], ['route' => 'install.app-config', 'label' => '3. App Config'], ['route' => 'install.migrate', 'label' => '4. Migrate'], ['route' => 'install.admin', 'label' => '5. Admin User'], ['route' => 'install.finish', 'label' => '6. Finish'], ]; $currentRoute = request()->route()->getName(); $stepNames = array_column($steps, 'route'); $currentIndex = array_search($currentRoute, $stepNames, true); $currentIndex = $currentIndex === false ? count($steps) - 1 : $currentIndex; @endphp @foreach ($steps as $i => $step)
  1. @if ($i < $currentIndex) {{ $step['label'] }} @elseif ($i === $currentIndex) {{ $step['label'] }} @else {{ $step['label'] }} @endif @if (! $loop->last) @endif
  2. @endforeach
{{-- Content --}}
{{-- Errors --}} @if ($errors->any())

Please fix the following errors:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Card --}}
@yield('content')