i'm trying to create a new user using the following code:
$user = new User();
$arr = array(
"username" => Input::get('username'),
"pass" => Input::get('pass')
)
$user->save($arr);
it does add the record to the table but all fields are empty - any idea what's wrong? thanks