So i'm using kohana user module, and i would like to extend my register page, now it adds username, email, and password but i would like to add some extra fields, and i just can't find where can i do it.
I found function action_register
which leads to Auth::instance()->register($_POST, true);
so i found this function register($fields)
which leads to $user = ORM::factory('user');
and $user->create_user($fields, array()
so i'm stuck somewhere here, i'm not even sure if i'm going the right path...