label('Title')->class('form-label')); ?>
span('*')->class('text-danger')); ?>
text('title')->class('form-control')->placeholder('Enter Program Title')->required()); ?>
div('Please enter program title')->class('invalid-feedback')); ?>
label('Code')->class('form-label')->for('code')); ?>
text('code')->class('form-control')->placeholder('Enter Program Code')); ?>
div('Please enter code')->class('invalid-feedback')); ?>
label('Institution')->class('form-label')->for('institution_id')); ?>
span('*')->class('text-danger')); ?>
select('institution_id', $institutionOptions)->placeholder('Select')->class('form-select choices-select')->required()); ?>
div('Please select institution')->class('invalid-feedback')); ?>
label('Level')->class('form-label')->for('programlevel_id')); ?>
span('*')->class('text-danger')); ?>
select('programlevel_id', $programLevelOptions)->placeholder('Select')->class('form-select choices-select')->required()); ?>
div('Please select program level')->class('invalid-feedback')); ?>
label('Cooperative Program (Co op)')->class('form-label')->for('coop_id')); ?>
select('coop_id', $coopOptions)->placeholder('Select')->class('form-select choices-select')); ?>
label('Description')->class('form-label')->for('description')); ?>
textarea('description')->class('form-control ckeditor-classic')); ?>