@extends('layouts.guest') @section('title', 'Sign In - ' . ($schoolSettings['school_name'] ?? 'School Portal')) @section('content')

Welcome back

Sign in to your account to continue

@if(session('error'))
{{ session('error') }}
@endif @if(session('status'))
{{ session('status') }}
@endif
@csrf {{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- Password --}}
@error('password')

{{ $message }}

@enderror
{{-- Remember + Forgot --}}
@if(Route::has('password.request')) Forgot password? @endif
{{-- Submit --}}
{{-- Help Text --}}

Having trouble signing in? Contact your school administrator.

@endsection