@props(['steps' => [], 'currentStep' => 1, 'showNavigation' => true])
{{-- Step indicator --}}
{{-- Step content --}}
@foreach($steps as $index => $step)
@if(isset($step['content']))
{!! $step['content'] !!}
@endif
@endforeach
{{-- Navigation --}}
@if($showNavigation)
@endif