I have a visualforce component which I use for displaying the user's name. Currently, I am doing it using the following:
!$User.FirstName} {!$User.LastName}
Is there any way I can display the User's Account as well as using this without writing SOQL. I would not like to create a controller just to display the user's account and am hoping there is a simpler and easier way using just Visual force.
I did try !$User.Contact.Account}
But it gave me an error.
Thanks.