@extends('layouts.applicant') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(!empty($status)) {{$status}} @endif

Student Commitment Fee Payment

@if(count($results)!=0)
Please download Course Confirmation Form Download Course Confirmation Form


@forelse($results as $result) @empty @endforelse
Names Bank Slip Ref. Amount Date
{{auth()->user()->name}} {{$result->bank_slip}} {{$result->amount}} {{$result->date_committed}}
@else
Hello {{auth()->user()->name}}, You have to Pay commitment fee as stated in the letter of offer before downloading confirmation form.
{{@csrf_field()}}
@endif
@stop