How to Generate New Password in Laravel?
Step 1. Create a new Project in Laravel, so Open git Bash. Write down the following command:-
$ composer create-project --prefer-dist laravel/laravel changepassword "5.8.*"
Step 2. Now, Move to project directory on git Bash, so write down the following command:-
$ cd changepassword
Mysql Database connection Laravel
Step 3. Now, we have to Create a new Database. Go to XAMPP server->phpMyAdmin->Click New Database->changepassword.
Step 4. Now, Go to .env file to set the project path and give the project APP_URL, DB_DATABASE name and DB_USERNAME name.
Step 5. Create the user authentication scaffolding. Write down the following command:-
$ php artisan make:auth
Step 6. Thereafter, Migrate tables into the MySQL database. Write the following command within git Base.
$ php artisan migrate
Step 7. Go to app/Http/Controller/HomeController.php file and write down this following code:-
Step 8. Go to resources/views/home.blade.php file and write down this following code:-
Step 9. Go to Route/web.php file and write down this following code:-
Route::post('/home', 'HomeController@changePasswordUpdate')->name('home');
Login
Checking the current password matches or not with the provided password
Checking new password should not be same with the current password
Password changed Successfully
Thanks
- How to Login with Token in Laravel PHP Framework? - October 30, 2021
- How to merge two or multiple tables to each other in the Laravel PHP Framework? (Part-4) - October 29, 2021
- How to display a table in a Verticle or Horizontal form in the Laravel PHP Framework? Part-2 - October 29, 2021