ResetPasswordController.php 642 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Http\Controllers\Auth;
  3. use App\Http\Controllers\Controller;
  4. use Illuminate\Foundation\Auth\ResetsPasswords;
  5. class ResetPasswordController extends Controller
  6. {
  7. /*
  8. |--------------------------------------------------------------------------
  9. | Password Reset Controller
  10. |--------------------------------------------------------------------------
  11. |
  12. | This controller is responsible for handling password reset requests
  13. | and uses a simple trait to include this behavior. You're free to
  14. | explore this trait and override any methods you wish to tweak.
  15. |
  16. */
  17. use ResetsPasswords;
  18. }