{{-- Ensure height is calculated or default to standard --}}
{{-- Loop through fields and only show them on this page --}}
@foreach($fields as $field)
@if($field['page'] == $page['page_number'])
@php
// Find color from signers if available (based on recipient ID)
$recipientId = $field['recipient']['id'] ?? '';
$signer = collect($template_data->signers ?? [])->firstWhere('id', $recipientId);
$borderColor = $signer['role_color'] ?? '#3c50e0';
@endphp
{{ $field['type'] }}
@endif
@endforeach