@extends('auth.layout.app') @section('title', 'Login') @section('content')

Welcome to International School Management

@if (Auth::user())
You are logged in as admin. Go to Dashboard
@endif

Sign in

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection