@if(auth()->check() && auth()->user()->role === 'admin') Register New Trainee @else NYOTA Trainee Self-Registration @endif
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
Please correct the following errors:
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
ID Number
Full Name
Phone Number
Email Address
County
Select County
@foreach($counties as $county)
id ? 'selected' : '' }}> {{ $county->name }}
@endforeach
Sub-County
Select Sub-County
Ward
Select Ward
Training Type
Select Training Type
BDS (Business Development Services)
RPL (Recognition of Prior Learning)
OJE (On-the-Job Experience)
@if(auth()->check() && auth()->user()->role === 'admin')
Assign Classroom
Select Classroom
@foreach($classrooms as $classroom)
id ? 'selected' : '' }}> {{ $classroom->county->name ?? 'Unknown County' }} - {{ $classroom->sub_county->name ?? 'Unknown Subcounty' }} - {{ $classroom->center->name ?? 'Unknown Center' }} - Class {{ $classroom->class_number ?? 'N/A' }}
@endforeach
@endif
Password
Confirm Password
@if(auth()->check() && auth()->user()->role === 'admin')
Register Trainee @else
Register & Continue @endif
@guest
Already registered?
Login here
@endguest