Dot-twigrenderer extends Twig with functions that use functionality from laminas/laminas-authentication to check if the user is authenticated and to get the authenticated identity object respectively.
public function hasIdentity(): bool;
public function getIdentity(): ?IdentityInterface;
{% if hasIdentity() %}
Welcome, {% getIdentity().username %}!
{% endif %}