How do I show registration date and last login date in user profile information?
<?php echo $user->getRegistrationDate()->format(JText::_('DATE_FORMAT_LC1'));?>
<?php echo $user->getLastVisitDate();?>
//LINE 65
<div class="fd-small">
<?php echo $this->render( 'fields' , 'user' , 'profile' , 'profileHeaderA' , array( 'GENDER' , $user ) ); ?>
</div>
<?php echo $user->getRegistrationDate()->format(JText::_('DATE_FORMAT_LC1'));?> // i put at here
<?php echo $user->getLastVisitDate();?> // i put at here
//LINE 180
<?php if( $this->template->get( 'profile_gender' , true ) ){ ?>
<div class="mt-5 teaser-about">
<div class="fd-small">
<?php echo $this->render( 'fields' , 'user' , 'profile' , 'profileHeaderA' , array( 'GENDER' , $user ) ); ?>
</div>
<br>
<?php echo $user->getRegistrationDate()->format(JText::_('DATE_FORMAT_LC1'));?>
<?php echo $user->getLastVisitDate();?>
</br>
</div>