Skip to content

Instantly share code, notes, and snippets.

View powertech2nd's full-sized avatar

Wibisono Indrawan powertech2nd

View GitHub Profile
@whoisryosuke
whoisryosuke / laravel-loop-through-old-flash.php
Created May 16, 2018 23:58
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] }}"