App\Modules\System\Controllers\Authorize::reset PHP Method

reset() public method

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