You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Login.php 435B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Filament\Pages\Auth;
  3. use Wallo\FilamentCompanies\Pages\Auth\Login as BaseLogin;
  4. class Login extends BaseLogin
  5. {
  6. public function mount(): void
  7. {
  8. parent::mount();
  9. if (app()->environment('demo')) {
  10. $this->form->fill([
  11. 'email' => 'admin@erpsaas.com',
  12. 'password' => 'password',
  13. 'remember' => true,
  14. ]);
  15. }
  16. }
  17. }