Is there a way to check if field was modified in Symfony Form? When form is created like this:
$form = $this->createForm(ObjectType::class, $object);
Can I get a list of modified fields?
Is there a way to check if field was modified in Symfony Form? When form is created like this:
$form = $this->createForm(ObjectType::class, $object);
Can I get a list of modified fields?