. * */ return [ /* 'first_name' => [ 'notEmpty' => '', 'maxLength' => 100, ], 'last_name' => [ 'notEmpty' => '', 'maxLength' => 100, ], */ 'username' => [ 'notEmpty' => '', 'maxLength' => 100, ], 'email' => [ 'notEmpty' => '', 'maxLength' => 100, ], 'password' => [ //'passwordComplexity' => 'low', 'minLength' => 6, 'maxLength' => 32, ], 'confirm_password' => [ 'match' => 'password', ], ];