App\Modules\System\Controllers\Authorize::reset PHP 메소드

reset() 공개 메소드

Display the password reset view for the given token.
public reset ( string $token ) : Response
$token string
리턴 Response
    public function reset($token)
    {
        return $this->getView()->shares('title', __d('system', 'Password Reset'))->with('token', $token);
    }