I am currently building a webpage where the user can submit an order and have the ability to add multiple items to the order. Right now I have an order form that has the fields it needs like shipping address and all that. Then I included the item form and closed the form. I can't control the included form anymore.
Here is the form:
@foreach ($errors->all() as $error)
<p class="'error">{{ $error }}</p>
@endforeach
{{ Form::open() }}
<input type="textarea" name="comment" placeholder="Comment" />
<input type="text" name="shippingaddress" placeholder="Shipping Address" />
<input type="text" name="project_id" placeholder="Project Id" />
<input type="text" name="user_id" placeholder="User Id" />
@include ('Partials/Items')
<input type="submit" value="Send Requests" />
{{ Form::close() }}