Guest User

Untitled

a guest
May 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <?php
  2. @if(old('uid_tag'))
  3. @foreach(old('uid_tag') as $product)
  4. <input type="text" name="uid_tag[]" value="{{ old('uid_tag')[$loop->index] }}" size="30" />
  5. <textarea
  6. placeholder="Include weight or count"
  7. name="product_description[]"
  8. cols="45"
  9. rows="1"
  10. value="{{ old('product_description')[$loop->index] }}"
  11. aria-required="true"
  12. ></textarea>
  13. <input type="text" name="qty_ordered[]" value="{{ old('qty_ordered')[$loop->index] }}" size="3" />
  14. <input type="text" name="unit_cost[]" value="{{ old('unit_cost')[$loop->index] }}" />
  15. <input type="text" name="total_cost[]" value="{{ old('total_cost')[$loop->index] }}" />
  16. @endforeach
  17. @endif
Add Comment
Please, Sign In to add comment