I am designing a form in laravel to save a form which has fields like name, address and product name(it will be a GET method). So product name is to searched from database using jquery autocomplete plugin and ajax. My question is can we have POST and GET method on same view form in Laravel?
And if not then how can I achieve this, ie to save the name, address and filtered product name in db in one go onclick of submit button.