I am new to symfony 2. I have just setup with basic FOSuserbundle. But I have a few problems:
I have setup the new layout template but I could not find wher
Answers on your questions you can find inside documentation. Here are some points:
FOSUserBundle/Resources/views
into your bundle and do changes you want.services:
my_user.profile.form.type:
class: My\UserBundle\Form\Type\ProfileFormType
arguments: [%fos_user.model.user.class%]
tags:
- { name: form.type, alias: my_user_profile }
fos_user:
profile:
form:
type: my_user_profile
add('email', 'email')
->add('firstName')
->add('lastName')
;
}
}