@extends('auth.layout.app')
@section('title', 'Login')
@section('content')
Welcome to International School Management
@if (Auth::user())
@endif
Need an account?
Sign in
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection