@php
$files = [
'cv' => ['label' => 'FILE CV', 'hint' => 'WAJIB PDF (Maks 3MB)', 'accept' => '.pdf', 'required' => true],
'ktp' => ['label' => 'FOTO KTP', 'hint' => 'OPSIONAL (JPG/PNG)', 'accept' => '.jpg,.jpeg,.png', 'required' => false],
'ijazah' => ['label' => 'IJAZAH', 'hint' => 'OPSIONAL (PDF/JPG)', 'accept' => '.pdf,.jpg,.jpeg,.png', 'required' => false],
];
@endphp
@foreach($files as $name => $info)