**Description** We could use the property ``` mimeTypes ``` of the ``` Symfony\Component\Validator\Constraints\File ``` to specify the attribute ``` accepted ``` of the field **Example** <!-- A simple example of the new feature in action (include PHP code, YAML config, etc.) If the new feature changes an existing feature, include a simple before/after comparison. --> in `Symfony\Component\Form\Extension\Validator\ValidatorTypeGuesser` line 125 ```php case 'Symfony\Component\Validator\Constraints\Image': if ($constraint->mimeTypes){ return new TypeGuess('Symfony\Component\Form\Extension\Core\Type\FileType', array('attr' => ['accept' => implode(', ', $constraint->mimeTypes)]), Guess::HIGH_CONFIDENCE); } return new TypeGuess('Symfony\Component\Form\Extension\Core\Type\FileType', array(), Guess::HIGH_CONFIDENCE); ```