How can i get data from database for dropdownlist in Form in Laravel using laravel collectives?

104 Views Asked by At

I have used usual dropdown list and it's not worked, when i click the submit button for all the data in the form except drop down value were sent to database.how can i fix it??

1

There are 1 best solutions below

0
On

Your <select> is missing a name="foo" attribute.

A form will only submit elements with a name as part of the request.