Need to add properties in config/packages/easy_admin.yaml

easy_admin:
  entities:
      User:
          class: App\Entity\User
          form:
              fields:
                  - { property: 'email' }
                  - { property: 'password' }
                  -   property: 'roles'
                      type: 'choice'
                      type_options:
                          mapped: true
                          expanded: true
                          multiple: true
                          choices: { 'User': 'ROLE_USER', 'Administrateur': 'ROLE_ADMIN' }
                  - { property: 'active' }

By toihid

Leave a Reply