@extends('layouts.app') @section('title', 'Sign in - ERAS') @section('content')
Back
ER
ERAS
Edo Revenue Access Service

Sign in

Access your dashboard with your credentials.

{{-- Display error messages --}} @if(session('message'))

{{ session('message') }}

@endif @if(isset($error))

{{ $error }}

@endif @if(isset($errors) && $errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Hidden return URL field --}}
@error('user_type')

{{ $message }}

@enderror
{{-- Dynamic input field for RIN or Email based on user type --}}
@error('RIN')

{{ $message }}

@enderror @error('EmailAddress')

{{ $message }}

@enderror
Forgot password?
@error('Password')

{{ $message }}

@enderror
RememberMe ?? false) ? 'checked' : '' }}>
New to ERAS?
Create account

By continuing, you agree to the terms and acknowledge our privacy notice.

@push('scripts') @endpush @endsection