I’m not able to pass the value from dtguia to the bank. If I remove this input it works normally with only 1 field, but with 2 fields it’s not working. Could someone help me?
<div class="guias_multiplos">
<div class="divdefault" style="display: none;">
<div class="col-md-2">
<div class="form-group">
<ol>
{!! Form::text('guia[]', null, ['class' => 'form-control' ]) !!}
{!! Form::text('dtguia[]', null, ['class' => 'form-control Data' ]) !!}
<i class="glyphicon glyphicon-trash multiple_remove"></i>
</ol>
</div>
</div>
</div>
<div class="col-md-2">
<div class="form-group">
<ol>
{!! Form::text('guia['0']', null, ['class' => 'form-control', 'required' => 'required' ]) !!}
{!! Form::text('dtguia['1']', null, ['class' => 'form-control Data' ]) !!}
</ol>
</div>
</div>
</div>
New contributor
Langone is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.