├── resources ├── views │ ├── .gitkeep │ ├── password-reset.blade.php │ ├── verify-email.blade.php │ ├── register.blade.php │ ├── request-password-reset.blade.php │ ├── login-two-factor.blade.php │ ├── password-confirmation.blade.php │ ├── login.blade.php │ └── filament │ │ └── pages │ │ └── two-factor.blade.php └── lang │ └── en │ ├── verify-email.php │ ├── password-confirmation.php │ ├── password-reset.php │ ├── register.php │ └── two-factor.php ├── screenshots ├── login.png ├── 2fa-login.png ├── 2fa-page.png ├── register.png ├── forgot-password.png ├── confirm-password.png └── email-verification.png ├── database ├── factories │ └── ModelFactory.php └── migrations │ └── create_filament_fortify_table.php.stub ├── src ├── Facades │ └── FilamentFortify.php ├── Http │ ├── Responses │ │ └── LoginResponse.php │ └── Livewire │ │ └── Auth │ │ ├── LoginTwoFactor.php │ │ ├── PasswordConfirmation.php │ │ ├── RequestPasswordReset.php │ │ ├── Login.php │ │ ├── PasswordReset.php │ │ └── Register.php ├── Pages │ ├── Concerns │ │ ├── ConfirmPassword.php │ │ ├── ActionButtons.php │ │ └── HasActionButtons.php │ └── TwoFactor.php ├── FilamentFortify.php ├── Commands │ └── FilamentFortifyCommand.php └── FilamentFortifyServiceProvider.php ├── config └── filament-fortify.php ├── CHANGELOG.md ├── LICENSE.md ├── composer.json └── README.md /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/login.png -------------------------------------------------------------------------------- /screenshots/2fa-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/2fa-login.png -------------------------------------------------------------------------------- /screenshots/2fa-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/2fa-page.png -------------------------------------------------------------------------------- /screenshots/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/register.png -------------------------------------------------------------------------------- /screenshots/forgot-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/forgot-password.png -------------------------------------------------------------------------------- /screenshots/confirm-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/confirm-password.png -------------------------------------------------------------------------------- /screenshots/email-verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wychoong/filament-fortify/HEAD/screenshots/email-verification.png -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- 1 | 'Verify email', 5 | 6 | 'buttons' => [ 7 | 8 | 'resend' => [ 9 | 'label' => 'Resend email', 10 | ], 11 | ], 12 | 13 | 'fields' => [], 14 | 15 | 'messages' => [ 16 | 'throttled' => 'Too many register attempts. Please try again in :seconds seconds.', 17 | 'verify' => 'Check your email to verify', 18 | ], 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/views/password-reset.blade.php: -------------------------------------------------------------------------------- 1 |
26 | {{ __('filament-fortify::two-factor.label.setup-key') }}: {{ decrypt(auth()->user()->two_factor_secret) }} 27 |
28 | @endif 29 |{{$index + 1}}) {{$code}}
38 | @endforeach 39 |