For example we have this Model fields: -name. -surname. -birthdate. -address.
How to be able to duplicate form in one page to fill data for everyone and create multiple Records at once.
<form>
    <input name />
    <input surname />
    <input birthdate />
    <input address />
</form>
<button>Additional+</button>
<button>Submit</button>
Logic is when user click on Additional+ button, there rendering second form.
Every click render another bonus form.
<form>
    <input name />
    <input surname />
    <input birthdate />
    <input address />
</form>
<form>
    <input name />
    <input surname />
    <input birthdate />
    <input address />
</form>
<form>
    <input name />
    <input surname />
    <input birthdate />
    <input address />
</form>
<button>Additional+</button>
<button>Submit</button>
When user click on Submit whole data need to be sent to my Controller.
 
    