I use Vich Uploader bundle for SF 4.0 in Bootstrap. I would like to set a placeholder and rename 'browse' button.
I have tried to :
- Use 'placehoder' attribute (FormType.php)
{{ form_widget(form.imageFile, { 'attr': {'class': 'form-control', 'placeholder': "Please attach picture"}} ) }}
- Add 'placeholder' option (error) or label option (change nothing)
How can I do that ?
Please, find below my code
FormType.php
->add('imageFile', VichFileType::class, [])
_form.html.twig
{{ form_widget(form.imageFile, { 'attr': {'class': 'form-control'}} ) }}
{{ form_errors(form.imageFile) }}