im creating new administration system and i want help taking some decisions
1 - which one is better Phalcon\Tag OR Phalcon\Forms for creating forms knowing that each form is related to a model
2 - is it a good idea in to make unified forms by using a default view contain code below and inherit from it to make fast default views?
<h2>
Create {{modelName}}
</h2>
<fieldset>
{% for element in form %}
<div class="control-group">
{{ element.label(["class": "control-label"]) }}
<div class="controls">
{{ element }}
</div>
</div>
{% endfor %}
<div class="control-group">
{{ submit_button("Submit", "class": "btn btn-primary") }}
</div>
</fieldset>