This commit is contained in:
Saeed Vaziry
2024-12-14 03:13:47 +01:00
committed by GitHub
parent 0d12dd0c69
commit 572d1df010
20 changed files with 734 additions and 67 deletions

View File

@ -24,6 +24,13 @@ public function mount(): void
$this->initTwoFactor();
$this->form->fill();
if (config('app.demo')) {
$this->form->fill([
'email' => 'demo@vitodeploy.com',
'password' => 'password',
]);
}
}
public function logoutAction(): Action