@extends('layouts.applicant') @section('content')
Download Online Enrollment Instructions
@if(!empty($status)) {{$status}} @endif
@if (session('status'))
{{ session('status') }}
@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{csrf_field()}}
Kindly Confirm your email address
{{csrf_field()}}
@if(isset($paymentdetails)) @if($paymentdetails)
Reference Account Amount Send By Phone Used Received At
{{$paymentdetails->Mpesa}} {{$paymentdetails->Mpesa_Account}} Ksh.{{number_format($paymentdetails->Amount,2)}} {{$paymentdetails->Sender}} {{$paymentdetails->Mpesa_Msisdn}} {{$paymentdetails->Date_received}}
@else
You have no paid any commitment fee. Kindly contact admissions office if you have paid
@endif @if($studentsdetails)
@if($studentsdetails->online_enrolled!=1) @else
congradulations You have successfully Enrolled
@endif
Name Adm. No. Course Campus Academic Calender Intake
{{$studentsdetails->first_name}} {{$studentsdetails->middle_name}} {{$studentsdetails->last_name}} {{$studentsdetails->reg_num}} {{$studentsdetails->course}} {{$studentsdetails->campus}} {{$studentsdetails->year}} {{$studentsdetails->intake}}
@if($studentsdetails->online_enrolled!=1) @else
congradulations You have successfully Enrolled
@endif
@else
We found your payment but seems you paid to a wrong account kindly contact admissions office
@endif @endif
@stop