I'm trying to build a registration page, but in that same page I have to make 2 submit buttons: one of them submit all the information and the other only submit 2 of them. What I tried was this:
{!!form::open()!!}
//some forms where the user can enter informations
{!!form::open()!!}
// the zone for the 2 informations
{!!form::submit(verifie)!!}
{!!form::close()!!}
// some other informations
{!!form::submit('DONE')!!}
{!!form::close()!!}
But I think this didn't work, because the first submit button passed all informations before it. How can I make this work? Thank you.