PasswordController.php 605 B

123456789101112131415161718192021
  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. | Password Reset Controller
  8. |--------------------------------------------------------------------------
  9. |
  10. | This controller is responsible for handling password reset requests
  11. | and uses a simple trait to include this behavior. You're free to
  12. | explore this trait and override any methods you wish to tweak.
  13. |
  14. */
  15. use ResetsPasswords;
  16. }