I am creating a web site. So, I am creating a registration form in this web site. There are drop down box which have Company name and text field which have address in this form. Now I want to show relevant address in same page when someone change the company name from the drop down box. I am very new to laravel.
How can I do this ??
Here is my Form.
<form class="form-horizontal" method="POST" action="#" enctype="multipart/form-data" id="signupForm">
{{ csrf_field() }}
<br><br>
Address : <input type="text" class="form-control" name="add" value="" id="username">
Company Name :
<select>
<option value="Com 1">Com 1</option>
<option value="Com 2">Com 2</option>
</select>
</form>