As you can see the code below, I have 2 forms in a same page. How to I to pass all the value('getfur' and 'customer') to controller after I press the submit button in the second form? This is only a snippet of my codes.
I already tried this in controller like this below, but it return null
$getAllInput = $request->all();
dump($getAllInput ); //return null
view
{!! Form::open() !!}
<div class="form-group">
<label>Furniture</label>
{!! Form::select('getfur',$getFuniture, null, ['class'=>'form-control', 'placeholder' => '--- Select Furniture---']) !!}
</div>
{!! Form::close() !!}
{!! Form::open(['route'=>['fur.store','id'=>'myAppForm']) !!}
<div class="form-group">
<label>Customer</label>
{!! Form::text('customer', null, ['class'=>'form-control']) !!}
<button class="btn btn-primary">SUBMIT</button>
</div>
{!! Form::close() !!}
EDIT (FULL CODE)
{!! Form::open() !!}
<div class="form-group">
<label>Furniture</label>
{!! Form::select('getfur',$getFuniture, null, ['class'=>'form-control', 'placeholder' => '--- Select Furniture---']) !!}
</div>
{!! Form::close() !!}
{!! Form::open(['url'=>['fur/1','id'=>'myAppForm']) !!}
<div class="form-group">
<label>Customer</label>
//some input form
<button class="btn btn-primary">SUBMIT</button>
</div>
{!! Form::close() !!}
{!! Form::open(['url'=>['fur/2','id'=>'myAppForm']) !!}
<div class="form-group">
<label>Customer</label>
//some input form
<button class="btn btn-primary">SUBMIT</button>
</div>
{!! Form::close() !!}
{!! Form::open(['url'=>['fur/3','id'=>'myAppForm']) !!}
<div class="form-group">
<label>Customer</label>
//some input form
<button class="btn btn-primary">SUBMIT</button>
</div>
{!! Form::close() !!}
and so on...until the url reaches 'fur/20', i dont want the select form in each div
<button class="btn btn-primary" type="submit">SUBMIT</button><button class="btn btn-primary" type="submit">SUBMIT</button>