{% extends 'base.html.twig' %} {% block title %}Dashboard - Kinde Auth Example{% endblock %} {% block content %}

Welcome to your Dashboard

{% if user %}

User Information

Name

{{ user.given_name ?? 'N/A' }} {{ user.family_name ?? '' }}

Email

{{ user.email ?? 'N/A' }}

{% if user.picture is defined and user.picture %}

Profile Picture

Profile
{% endif %}
{% if permissions is defined and permissions|length > 0 %}

Your Permissions

{% for permission in permissions %} {{ permission }} {% endfor %}
{% endif %} {% if organization is defined and organization %}

Organization

{{ organization.name ?? 'N/A' }}

{% endif %} {% else %}
User information not available.
{% endif %}
{% endblock %}