I am using Symfony 6 and created an entity for global options and so the sql table has only 3 columns : name, label and value
In order to store global info about my app. Like this.
| id | name | label | value |
|---|---|---|---|
| 1 | maintenance | Set the app in maintenance | 0 |
| 2 | allow_comments | Allow comments for products | 1 |
How can I make a form which contains every elements of the table ?
I would like the result to be like this : Expected form result
Thanks