public function __construct()
 {
     parent::__construct();
     $this->user->user_group_id = CollegeAdmin::USER_GROUP_ID;
     $this->collegeAdmin = new CollegeAdmin();
 }
 *@property Student $student 
 */
class StudentRegisterForm extends RegisterForm
{
    public $student;
    public $hash;
 public function __construct()
 {
     parent::__construct();
     $this->user->user_group_id = Employer::USER_GROUP_ID;
     $this->employer = new Employer();
 }