Advertisement
Guest User

Untitled

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. {!! Form::open(['action' => 'TrickController@tags', 'class' => 'blog-form']) !!}
  2.  
  3. @foreach($ids as $id)
  4. {!! Form::hidden('id[]', $id) !!}
  5. @endforeach
  6.  
  7. {!! Form::label('tags', 'Tags') !!}
  8. {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'example, example, example']) !!}
  9. <br>
  10. {!! Form::submit('Absenden', ['class' => 'btn btn-primary']) !!}
  11. {!! Form::close() !!}
  12.  
  13. Invalid argument supplied for foreach()
  14.  
  15. {!! Form::hidden('id', 5 !!}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement