Reset Your
Password
Enter your school email address and we’ll send you a secure link for resetting your password.
@foreach([
['fa-shield-halved', 'Secure password reset'],
['fa-paper-plane', 'Instant email delivery'],
['fa-user-graduate', 'Staff account recovery'],
['fa-mobile-screen-button', 'Works on a phone or computer'],
['fa-circle-question', 'School office help if you get stuck'],
] as $feature)
{{ $feature[1] }}
@endforeach
@php
try {
$pinned = \App\Models\Message::where('show_on_login', true)->where('status', 'sent')->latest()->first();
} catch (\Throwable $e) {
$pinned = null;
}
@endphp
@if($pinned)
{{ $pinned->subject }}
{{ \Illuminate\Support\Str::limit($pinned->body, 140) }}
@endif
@if(!empty($schoolNews))
{{ $schoolNews[0]['title'] ?? 'Announcement' }}
{{ \Illuminate\Support\Str::limit($schoolNews[0]['excerpt'] ?? '', 120) }}
@endif