php - How to use Laravel's auth middleware password-reset feature without scaffolding -


i removed laravel's scaffolding command php artisan fresh. read auth middleware documentation, didn't talk specific feature, password-reset. explains use scaffolding, not if removed it. there chapter "manuel authentication" common authentication methods, such "determining if user authenticated", nothing password-reset.

other point, middleware need specific rows in db tables created migrations ? "users" , "password_resets" tables configured in app\config\auth.php file.

this problem may seem simple, didn't find clue in documentation.

thanks !