ForgotPasswordController.php 667 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Http\Controllers\Auth;
  3. use App\Http\Controllers\Controller;
  4. use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
  5. class ForgotPasswordController extends Controller
  6. {
  7. /*
  8. |--------------------------------------------------------------------------
  9. | Password Reset Controller
  10. |--------------------------------------------------------------------------
  11. |
  12. | This controller is responsible for handling password reset emails and
  13. | includes a trait which assists in sending these notifications from
  14. | your application to your users. Feel free to explore this trait.
  15. |
  16. */
  17. use SendsPasswordResetEmails;
  18. }