Hi, in my template I have:
@for($i = 0; $i < 4; $i++)
{{ dd(Input::old('custom_link.0.title')) }}
<div class="form-group">
<label for="link_title_{{ $i }}">Link Title {{ $i+1 }}</label>
<input type="text" class="form-control" id="link_title_{{ $i }}" name="custom_link[{{ $i }}][title]" value="{{ Input::old('custom_link.0.title') }}">
</div>
@endfor
put template
{{ Input::old('custom_link.' . $i . '.title')) }}
After vlidation on controller I return
return Redirect::route('community-create-step-4')
->withErrors($validator)
->withInput();
No comments:
Post a Comment