Agregá canciones que no pueden faltar en tu evento

@php $musicCount = 0; // Contar cuántas canciones hay foreach($form as $key => $value) { if (preg_match('/^musicTitle(\d+)$/', $key, $matches)) { $musicCount = max($musicCount, (int)$matches[1] + 1); } } if ($musicCount === 0) $musicCount = 1; // Al menos una por defecto @endphp @for($i = 0; $i < $musicCount; $i++)
Canción {{ $i + 1 }}
@if($i > 0) @endif
@endfor