Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save whoisryosuke/04731177e772fefe08929e809f4fef05 to your computer and use it in GitHub Desktop.
Save whoisryosuke/04731177e772fefe08929e809f4fef05 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
@badasukerubin
Copy link

I'd suggest doing something like, (clean):

@foreach(old('uid_tag', ['value']) as $product)
    ...
@endforeach

This allows the form elements display at least once. Leaving ['value'] as [] returns the result of the code with the if statement.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment