Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bran921007/4cb43baa275167f82a02fc01cf43d8aa to your computer and use it in GitHub Desktop.
Save bran921007/4cb43baa275167f82a02fc01cf43d8aa to your computer and use it in GitHub Desktop.
Laravel - Get old form input values for array-based input
<?php
@if(old('uid_tag'))
@foreach(old('uid_tag') as $product)
<input type="text" name="uid_tag[]" value="{{ old('uid_tag')[$loop->index] }}" size="30" />
<textarea
placeholder="Include weight or count"
name="product_description[]"
cols="45"
rows="1"
value="{{ old('product_description')[$loop->index] }}"
aria-required="true"
></textarea>
<input type="text" name="qty_ordered[]" value="{{ old('qty_ordered')[$loop->index] }}" size="3" />
<input type="text" name="unit_cost[]" value="{{ old('unit_cost')[$loop->index] }}" />
<input type="text" name="total_cost[]" value="{{ old('total_cost')[$loop->index] }}" />
@endforeach
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment