Asegurados
@if(old('tomador_IdPersonaTipo') == 1 || old('tomador_IdPersonaTipo') == null)
El tomador támbien es asegurado
@endif
@php
$i = 1;
$oldData = old();
@endphp
@while(isset($oldData['asegurado_documento_'.$i]))
Documento {{ old('asegurado_documento_'.$i) }}
@php
$i++;
@endphp
@endwhile
@php
$cantidad = old('capitasE');
$oldData = old();
@endphp
@if(is_numeric($cantidad))
@for($i = 1; $i <= $cantidad; $i++)
@if(old('beneficiario_documento_'.$i))
@foreach(old('beneficiario_documento_'.$i) as $key => $valor)
{{ old('beneficiario_apellido_'.$i)[$key] }} {{ old('beneficiario_nombre_'.$i)[$key] }} {{ old('beneficiario_porcentaje_'.$i)[$key]}}% X
@endforeach
@endif
@endfor
@endif