Add Fields in User Managment Module

How To Add Fields in User Managment Module and Display it in registration form:-

Login with Admin

goto->create profile fields

after creating profile field

take one variable according to your fieldname in your model

then write code for displaying the field in your registration form

like this;-

<div class="row">

<?php echo $activeform->labelEx($profile,‘newfield’); ?>

<?php echo $activeform->TextField($profile,‘newfield’); ?>

</div>

Remember You have to write $profile not $form