validate(); if (Auth::attempt(['uid' => $this->username, 'password' => $this->password], $this->rememberMe)) { session()->regenerate(); $this->redirectIntended(route('dashboard'), navigate: true); return; } $this->addError('username', 'These credentials do not match our records.'); } } ?>

Travel Request System

Sign in with your network credentials

@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@error('username')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror