As far as i can see, with current way of admin configuration merging, there is no way to override the grouping of fields in forms.
default:
form:
class: sfGuardUserAdminForm
display:
"NONE": [username, password, password_again]
"Permissions and groups": [is_active, is_super_admin, sf_guard_user_group_list, sf_guard_user_permission_list]
If i change the labels like:
form:
class: sfGuardUserAdminForm
display:
"foo": [username, password, password_again]
"bar": [is_active, is_super_admin, sf_guard_user_group_list, sf_guard_user_permission_list]
I get foo and bar and also the defaults. Is it possible to disable the defaults somehow?
P.S. i18n support in this plugin would be very nice.