{!! $content['title'] !!}

{{ $content['subtitle'] }}

@foreach ($content['steps'] as $index => $step)
@if(isset($step['icon']))
@svg('heroicon-o-'.$step['icon'], 'w-10 h-10 text-secondary-foreground')
@endif
{{ $index + 1 }}

{{ $step['title'] }}

{{ $step['description'] }}

@if ($index === count($content['steps']) - 1) @endif
@endforeach