form('GET')->route('program.index')->class(['filter-form'])->attributes(['id' => 'filter-form'])->open()); ?>
Filter

By Keyword

text('search')->value(request('search'))->placeholder('Search Program')->class('form-control')); ?>
text('location')->value(request('location'))->placeholder('Search Location')->class('form-control')); ?>

By Country

select('country_id', $countryOptions)->value(request('country_id'))->placeholder('Select')->class('form-select choices-select countryDropdown')); ?>

By Institution

select('institution_id', $institutionOptions)->value(request('institution_id'))->placeholder('Select')->class('form-select institutionDropdown')); ?>

By Course Level

select('programlevel_id', $programLevelOptions)->value(request('programlevel_id'))->placeholder('Select')->class('form-select choices-select')); ?>

By Intake

select('intake_id', $intakeOptions)->value(request('intake_id'))->placeholder('Select')->class('form-select choices-select')); ?>
has('class_id')) { $hasClass = true; } if (request()->has('status')) { $hasStatus = true; } ?>

select('test_id', $testOptions)->value(request('test_id'))->placeholder('Select')->class('form-select choices-select')); ?>
to

select('status', $statusOptions)->value(request('status'))->placeholder('Select Status')->class('form-select choices-select')); ?>
form()->close()); ?>