PasswordController.php 812 B

123456789101112131415161718192021222324252627282930
  1. <?php namespace App\Http\Controllers\Auth;
  2. use App\Http\Controllers\Controller;
  3. use Illuminate\Foundation\Auth\ResetsPasswords;
  4. class PasswordController extends Controller
  5. {
  6. /*
  7. |--------------------------------------------------------------------------
  8. | Password Reset Controller
  9. |--------------------------------------------------------------------------
  10. |
  11. | This controller is responsible for handling password reset requests
  12. | and uses a simple trait to include this behavior. You're free to
  13. | explore this trait and override any methods you wish to tweak.
  14. |
  15. */
  16. use ResetsPasswords;
  17. /**
  18. * Create a new password controller instance.
  19. *
  20. * @return void
  21. */
  22. public function __construct()
  23. {
  24. $this->middleware('guest');
  25. }
  26. }