Component Library of SaaS Hammer

def form_errors(self, **kwargs):
form = AllFieldsForm({})
form.is_valid()
template = Template(
"""
{% load formify %}
<div class="w-full max-w-3xl mx-auto px-4">
{% render_form form %}
</div>
""",
)
return template.render(Context({"form": form}))