So in flask, I recently downloaded flask_bootstrap4, which is the same thing as flask_bootstrap (bootstrap 3) except for flask_bootstrap4, it uses bootstrap 4 instead of bootstrap 3. In my templates, I use this code for all my forms:
{% import 'bootstrap/wtf.html' as wtf %}
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
This worked out fine, except that when there were errors in the form, they would not display. I used the exact same thing for flask_bootstrap. Just wondering if anyone knows how to fix this. Thanks!