@extends('layouts.applicant') @section('content')
@if (session('status'))
{{ session('status') }}
@endif @php $upload=\App\Models\TrackUpload::first(); if(!$upload){ $a= new \App\Models\TrackUpload; $a->status=0; $a->save(); } $upload=\App\Models\TrackUpload::first(); if($upload->status==0){ @endphp
1. WE HAVE TEMPORARILY WAIVED THE REQUIREMENT TO UPLOAD DOCUMENTS DURING APPLICATION. YOUR DOCUMENTS WILL BE VERIFIED DURING ADMISSION
2. ENSURE THAT YOU ACCURATELY ENTER THE CORRECT GRADES SINCE ANY WRONG INFORMATION ENTERED WILL LEAD DISQUALIFICATION
@php } @endphp
{{csrf_field()}}
@php $count=1; @endphp
NB:Make sure you have entered the correct scores in the fields provided since this will make a basis for application Qualification. @php $count; @endphp @foreach($subjects->chunk(50) as $chunk)

Fill in all the data for the following subjects:

@foreach($chunk as $subject) @php $exploded_name=explode(" ",$subject->name); if($subject->name=="Biological Sciences"){ $element_id="biological"; }elseif($subject->name=="Biology"){ $element_id="biology"; }elseif($subject->name=="Chemistry"){ $element_id="chemistry"; }else if($subject->name=="Physics"){ $element_id="physics"; }elseif($subject->name=="Physical Sciences"){ $element_id="physical"; }elseif($subject->name=="Business Studies"){ $element_id="business"; }else{ $element_id=$subject->name; } @endphp
@endforeach
@if($count==4)
@elseif($count==5) @else @endif
@php $count++;@endphp @endforeach
@endsection