Hi,
Form::text('name') will get Input::old('name'), once you submit your form, the values of those fields will be replaced by Input::old('name'). Since you have the same field names on your textfield, all those fields will be overwritten. I suggest you append like an index/counter to your fields so it each fields will be treated differently.
beanmoss thank you for you answer,
But how should I validate then, if each form will have different field name?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community