I have this code:
@foreach ($titles as $key
Also, you can use the ? operator to avoid having to use @if @else @endif syntax. Change:
?
@if @else @endif
@if (Input::old('title') == $key) {{ $val }} @else {{ $val }} @endif
Simply to:
{{ $val }}