4👍
✅
I found the answer. There is an extra space between the ‘class’ keyword and the equals sign. this is what causes the issue. when i eliminate that it resolves the issue.
instead of {% render_field field class ="form-control is-valid" %}
i just changed it to {% render_field field class="form-control is-valid" %}
Source:stackexchange.com