Laravel authentication - login and registration with email verification and password reset

Опубликовано: 27 Октябрь 2024
на канале: codeForMe
1,038
23

LARAVEL LOGIN AND REGISTRATION WITH EMAIL VERIFICATION:
We are going to create a PHP 8 and Laravel 9 login page that has a link to reset password and a registration page that require a valid email and email confirmation. we will also create a simple page that can be only accessed by logged in users that verified their email.

TOPIC DISCUSSED:
Authentication System
Generate Login
Install laravel/Breeze
laravel login
laravel signup
laravel forgot password
laravel email verification


Your Queries -

1.How to create authentication system in laravel?
2.steps for creating login system
3.Create login system in laravel
4.Create user signup
5.What are steps for creating login system in laravel?

Chapters:

0:00 Create A PHP login system using Laravel task description
0:18 Create a Laravel project using composer
0:39 Install Laravel breeze using composer
0:54 Using Laravel breeze
1:04 Build Javascript and CSS
1:34 Adjust the database credentials in the configuration
1:53 Adjust the email credentials
1:58 Using https://mailtrap.io
2:24 Create the database structure with artisan
2:45 Adjusting the user model so that it need to verify email
3:03 Protect a route so that only email verified user can access some protected path
3:22 Start a laravel development server
3:39 Adding a link to the registration page
4:21 Manually testing the registration
4:31 Manually testing the email verification
4:50 Email verification
4:54 Dashboard page
5:00 Manually testing the password reset
5:25 Checking the password reset email
5:36 Changing the password in the Password reset page
5:50 Manually testing the login with the new password