You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the ResetPasswordController to your web.php file
use App\Http\Controllers\Auth\ResetPasswordController;
Remove the reset password route in the web.php file
Add these two routes to the web.php
Route::get('password/reset/{token}', [ResetPasswordController::class, 'showResetForm'])->name('password.reset');
Route::post('password/reset', [ResetPasswordController::class, 'reset'])->name('password.update');
This did the trick for me. You can customize the blade.php that are in the resources/views/auth/ folder
Add the ResetPasswordController to your web.php file
use App\Http\Controllers\Auth\ResetPasswordController;
Remove the reset password route in the web.php file
Add these two routes to the web.php
Route::get('password/reset/{token}', [ResetPasswordController::class, 'showResetForm'])->name('password.reset');
Route::post('password/reset', [ResetPasswordController::class, 'reset'])->name('password.update');
This did the trick for me. You can customize the blade.php that are in the resources/views/auth/ folder
This solution is already merged into main thus this issue should be marked as solved.
reset password not working
The text was updated successfully, but these errors were encountered: