@extends('layouts.app') @section('title', 'Find Student') @section('content')

Find Student

Search by name, student ID, email or phone — or pick one of your students below.

Type at least 2 characters. Press Enter to open the first result.
{{-- Live results replace the default lists --}}
@if($assignments->isNotEmpty())
My assigned students
@foreach($assignments as $assign) @php $s = $assign->student; $p = $progressMap[$s->id . '_' . $assign->semester_id] ?? null; $ph = $s->studentProfile?->photo_path; @endphp @endforeach
@endif @if($recentStudents->isNotEmpty())
Recently assessed by you
@foreach($recentStudents as $s) @endforeach
@endif @if($assignments->isEmpty() && $recentStudents->isEmpty())
Nothing to show yet
Search above to find any student in the system.
@endif
@push('scripts') @endpush @endsection