<?php

namespace DummyNamespace;

use;
use;
use;

{
    rootNamespace }}Http\Controllers\Controller;
{
    rootNamespace }}AuthTraits\SendsPasswordResetEmails;
{
    rootNamespace }}Http\Controllers\Base\BaseController;

class ForgotPasswordController extends BaseController
{
    /*
    |--------------------------------------------------------------------------
    | Password Reset Controller
    |--------------------------------------------------------------------------
    |
    | This controller is responsible for handling password reset emails and
    | includes a trait which assists in sending these notifications from
    | your application to your users. Feel free to explore this trait.
    |
    */
    protected $viewName = 'layout::auth.auth-forgot-password';

    use SendsPasswordResetEmails;
}
