@php
// Группируем поля попарно для half-width
$fields = $webForm->fields;
$i = 0;
$total = count($fields);
@endphp
@while($i < $total)
@php $f = $fields[$i]; $next = $fields[$i + 1] ?? null; @endphp
@if($f['width'] === 'half' && $next && $next['width'] === 'half')
{{-- Пара half-width полей --}}
@php $i += 2; @endphp
@else
@include('components._wf_field', ['field' => $f])
@php $i++; @endphp
@endif
@endwhile