@extends('auth.layouts.master') @section('content')
@include('auth.layouts.header')

Login your account

Enter your email address or account number, along with your password, to securely access your account.

@if (session('status'))

{{ session('status') }}

@endif
@csrf
@if ($errors->has('email_or_account_number'))

{{ $errors->first('email_or_account_number') }}

@endif
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
Forgot Password?

Don't have an account? Sign Up !

@include('auth.layouts.footer')
@endsection