. '§391.21(b)(10),(11). <b>All Applicants:</b> start with last, or current'
. ' position, and work back.'
];
-$titles = array_combine(range(1, 4), range(1, 4));
+$titles = [
+ 1 => '<label class="error">1</label>',
+ 2 => '2',
+ 3 => '3',
+ 4 => '4'
+];
$employment_titleHdr = [
'type' => 'static',
'label' => ' ',
'type' => 'text',
'name' => 'employment_dates_from'.$i,
'placeholder' => 'From:',
+ 'req' => ($i == 1) ? true: false,
'grid' => 2
];
${'employment_dates_to'.$i} = [
'type' => 'text',
'name' => 'employment_dates_to'.$i,
'placeholder' => 'To:',
+ 'req' => ($i == 1) ? true: false,
'grid' => 2
];
${'employment_info'.$i} = [
'type' => 'text',
'name' => 'employment_info'.$i,
-// 'placeholder' => ' ',
+ 'req' => ($i == 1) ? true: false,
'grid' => 4
];
${'employment_supervisor'.$i} = [
'type' => 'text',
'name' => 'employment_supervisor'.$i,
'placeholder' => 'Supervisor',
+ 'req' => ($i == 1) ? true: false,
'grid' => 4
];
${'employment_salary_start'.$i} = [
'type' => 'text',
'name' => 'employment_salary_start'.$i,
'placeholder' => 'Starting',
+ 'req' => ($i == 1) ? true: false,
'grid' => 1
];
${'employment_salary_end'.$i} = [
'type' => 'text',
'name' => 'employment_salary_end'.$i,
'placeholder' => 'Ending',
+ 'req' => ($i == 1) ? true: false,
'grid' => 1
];
${'employment_position'.$i} = [
'type' => 'text',
'name' => 'employment_position'.$i,
-// 'label' => ' ',
+ 'req' => ($i == 1) ? true: false,
'grid' => 2
];
${'employment_position_sub'.$i} = [
'type' => 'static',
'name' => 'employment_position_sub'.$i,
-// 'label' => ' ',
+ 'req' => false,
'grid' => 2
];
${'employment_reason'.$i} = [
'type' => 'text',
'name' => 'employment_reason'.$i,
-// 'label' => ' ',
+ 'req' => ($i == 1) ? true: false,
'grid' => 2
];
${'employment_reason_sub'.$i} = [
'type' => 'static',
'name' => 'employment_reason_sub'.$i,
-// 'label' => ' ',
+ 'req' => false,
'grid' => 2
];
}