PasswordController.php 813 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Http\Controllers\Auth;
  3. use App\Http\Controllers\Controller;
  4. use Illuminate\Foundation\Auth\ResetsPasswords;
  5. class PasswordController 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. /**
  19. * Create a new password controller instance.
  20. *
  21. * @return void
  22. */
  23. public function __construct()
  24. {
  25. $this->middleware('guest');
  26. }
  27. }