@php
$steps = [1 => 'Personal Info', 2 => 'Document Upload', 3 => 'Face Capture'];
@endphp
@foreach($steps as $stepNum => $label)
{{-- Circle --}}
{{ $stepNum }}
{{-- Label (optional on mobile, but helpful) --}}
{{ $label }}
{{-- Divider Line --}}
@if($stepNum < 3)
@endif
@endforeach
@if ($currentStep === 1)
@elseif ($currentStep === 2)
@elseif ($currentStep === 3)
@endif