Course Information
{{ html()->label('Title')->class('form-label') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Program Title')->required() }} {{ html()->div('Please enter program title')->class('invalid-feedback') }}
{{ html()->label('Code')->class('form-label')->for('code') }} {{ html()->text('code')->class('form-control')->placeholder('Enter Program Code') }} {{ html()->div('Please enter code')->class('invalid-feedback') }}
{{ html()->label('Institution')->class('form-label')->for('institution_id') }} {{ html()->span('*')->class('text-danger') }} {{ html()->select('institution_id', $institutionOptions)->placeholder('Select')->class('form-select choices-select')->required() }} {{ html()->div('Please select institution')->class('invalid-feedback') }}
{{ html()->label('Level')->class('form-label')->for('programlevel_id') }} {{ html()->span('*')->class('text-danger') }} {{ html()->select('programlevel_id', $programLevelOptions)->placeholder('Select')->class('form-select choices-select')->required() }} {{ html()->div('Please select program level')->class('invalid-feedback') }}
{{ html()->label('Cooperative Program (Co op)')->class('form-label')->for('coop_id') }} {{ html()->select('coop_id', $coopOptions)->placeholder('Select')->class('form-select choices-select') }}
{{ html()->label('Description')->class('form-label')->for('description') }} {{ html()->textarea('description')->class('form-control ckeditor-classic') }}
Other Information
{{ html()->label('Duration (Year)')->class('form-label')->for('year') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('year')->class('form-control')->placeholder('Program Duration')->required() }} {{ html()->div('Please enter program duration')->class('invalid-feedback') }}
{{ html()->label('PSW')->class('form-label')->for('psw') }} {{ html()->text('psw')->class('form-control')->placeholder('Enter PSW') }}
{{ html()->label('Fee')->class('form-label')->for('fee') }} {{ html()->text('fee')->class('form-control')->placeholder('Program Fee') }}
{{ html()->label('Scholarship')->class('form-label')->for('scholarship') }} {{ html()->text('scholarship')->class('form-control')->placeholder('Scholarship offered') }}
{{ html()->label('Open Date')->class('form-label')->for('application_open') }} {{ html()->date('application_open')->class('form-control')->placeholder('Enter application open') }}
{{ html()->label('Close Date')->class('form-label')->for('application_deadline') }} {{ html()->date('application_deadline')->class('form-control')->placeholder('Enter application close') }}
{{ html()->label('Prospect')->class('form-label')->for('prospects') }} {{ html()->textarea('prospects')->class('form-control') }}
Qualification Requirements
@if ($editable) @if ($program->level) @forelse ($program->level as $key => $item) @include('coursefinder::program.partials.qualification-form', [ 'numInc' => $key, 'value' => $item, ]) @empty @endforelse @else @include('coursefinder::program.partials.qualification-form', [ 'numInc' => 0, ]) @endif @else @include('coursefinder::program.partials.qualification-form', [ 'numInc' => 0, ]) @endif
Level Faculty Score/GPA Year
Proficiency Test Requirements
@if ($editable) @forelse ($program->tests as $key => $item) @include('coursefinder::program.partials.proficiency-form', [ 'numInc' => $key, 'value' => $item, ]) @empty @include('coursefinder::program.partials.proficiency-form', [ 'numInc' => 0, ]) @endforelse @else @include('coursefinder::program.partials.proficiency-form', [ 'numInc' => 0, ]) @endif
Prof Test Min Score Band Score
Fee Breakdown
@if ($editable) @if ($program->fee_breakdown) @forelse ($program->fee_breakdown as $key => $item) @include('coursefinder::program.partials.feeBreakdown', [ 'numInc' => $key, 'value' => $item, ]) @empty @endforelse @else @include('coursefinder::program.partials.feeBreakdown', [ 'numInc' => 0, ]) @endif @else @include('coursefinder::program.partials.feeBreakdown', [ 'numInc' => 0, ]) @endif
Application Fee Tution Fee Health Service Student Activities Technology Fee Library Fee
Course Module
@if ($editable) @if ($program->course_module) @forelse ($program->course_module as $key => $item) @include('coursefinder::program.partials.courseModule', [ 'numInc' => $key, 'value' => $item, ]) @empty @endforelse @else @include('coursefinder::program.partials.courseModule', [ 'numInc' => 0, ]) @endif @else @include('coursefinder::program.partials.courseModule', [ 'numInc' => 0, ]) @endif
Title Credit Hours
Cancel
Program URL
{{ html()->textarea('program_url')->class('form-control')->required()->rows(4)->placeholder('https://www.example.com') }}
Intake Information
@foreach ($intakeOptions as $index => $item)
{{ html()->checkbox('intakes[]', $editable && in_array($index, $program->intakes) ? true : false)->id('permission_' . $index)->value($index)->class('form-check-input child-checkbox') }} {{ html()->label($item)->for('permission_' . $index)->class('form-check-label ms-1') }}
@endforeach
Document Requirements
@foreach ($requiredDocumentOptions as $index => $item)
{{ html()->checkbox('required_documents[]', $editable && in_array($index, $program->required_documents ?? []))->id('doc_' . $index)->value($index)->class('form-check-input child-checkbox') }} {{ html()->label($item)->for('doc_' . $index)->class('form-check-label') }}
@endforeach
Keywords
{{ html()->text('keywords')->class('form-control')->attributes([ 'data-choices' => 'true', 'data-choices-removeItem' => 'true', 'data-choices-create' => 'true', 'multiple' => true, ]) }}
Academic Requirements
@if ($editable) @if ($program->academic_module) @forelse ($program->academic_module as $key => $item) @include('coursefinder::program.partials.academic', [ 'numInc' => $key, 'value' => $item, ]) @empty @endforelse @else @include('coursefinder::program.partials.academic', [ 'numInc' => 0, ]) @endif @else @include('coursefinder::program.partials.academic', [ 'numInc' => 0, ]) @endif
Requirements
Additional Documents
@if ($editable) @if ($program->additional_module) @forelse ($program->additional_module as $key => $item) @include('coursefinder::program.partials.additional', [ 'numInc' => $key, 'value' => $item, ]) @empty @endforelse @else @include('coursefinder::program.partials.additional', [ 'numInc' => 0, ]) @endif @else @include('coursefinder::program.partials.additional', [ 'numInc' => 0, ]) @endif
Requirements
Application Deadlines
@if ($editable) @if ($program->application_module) @forelse ($program->application_module as $key => $item) @include('coursefinder::program.partials.application', [ 'numInc' => $key, 'value' => $item, ]) @empty @endforelse @else @include('coursefinder::program.partials.application', [ 'numInc' => 0, ]) @endif @else @include('coursefinder::program.partials.application', [ 'numInc' => 0, ]) @endif
Requirements
@push('js') @endpush