{{-- Step 1: Configuration --}}
@if ($academic_session_id) {{-- Step 2: Two-box student picker --}}
{{-- Available Students --}}

Available Students ({{ $this->availableStudents->count() }})

@forelse ($this->availableStudents as $student) @empty
{{ $search ? 'No students match your search.' : 'All students are enrolled.' }}
@endforelse
{{-- Selected Students --}}

Selected for Enrollment ({{ $this->selectedStudents->count() }})

@if (count($selectedStudentIds)) @endif
@forelse ($this->selectedStudents as $student) @empty
Click students from the left to select them.
@endforelse
@else

Select an Academic Session

Choose a session above to see available students for enrollment.

@endif