{% extends 'base.html.twig' %} {% block title %}User Info - Kinde Auth Example{% endblock %} {% block content %}
First Name
{{ user.given_name ?? 'N/A' }}
Last Name
{{ user.family_name ?? 'N/A' }}
{{ user.email ?? 'N/A' }}
User ID
{{ user.id ?? 'N/A' }}
Profile Picture
Name
{{ organization.name ?? 'N/A' }}
ID
{{ organization.id ?? 'N/A' }}
{{ user|json_encode(constant('JSON_PRETTY_PRINT')) }}