+ @if(!empty($howItWorks['download_image']))
+
+
+
+
+
+
+ @endif
+
+
+ @foreach($steps as $index => $step)
+ @if($index < 2)
+
+
{{ str_pad($step['number'] ?? ($index + 1), 2, '0', STR_PAD_LEFT) }}
+ @if(!empty($step['title']))
+
{{ $step['title'] }}
+ @endif
+ @if(!empty($step['description']))
+
{{ $step['description'] }}
+ @endif
+
+
+ @endif
+ @endforeach
+
+
+
+ @foreach($steps as $index => $step)
+ @if($index >= 2)
+
+
{{ str_pad($step['number'] ?? ($index + 1), 2, '0', STR_PAD_LEFT) }}
+ @if(!empty($step['title']))
+
{{ $step['title'] }}
+ @endif
+ @if(!empty($step['description']))
+
{{ $step['description'] }}
+ @endif
+
+
+ @endif
+ @endforeach
+
+
+