Episode 6: Password Reset and Email
- Move Login/Logout link to the navbar
- Add password help link to login page
- Configure .env to work with mailtrap.io
- Add value to from so that there is a sent from value. Good idea to use
env('FROM_EMAIL')
- Modify route file with the following
- Review /Http/Controllers/Auth/PasswordController.php and add the following
- postReset() is already configured and does not need modification for this demo
- Create view files
- auth/password.blade.php
- auth/reset.blade.php
- emails/password.blade.php
- Review /config/auth.php file. Look at the emails.password setting
Leave a Reply