Skip to content

Commit

Permalink
Merge pull request #36 from danielpaul/master
Browse files Browse the repository at this point in the history
Removed escaped printing of text
  • Loading branch information
msurguy committed Oct 15, 2015
2 parents 7dd8a95 + 606a46e commit 3047f85
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ At this point the package is installed and you can use it as follows.

Add the honeypot catcher to your form by inserting `Honeypot::generate(..)` like this:

Laravel 5 & above:

{!! Form::open('contact') !!}
...
{!! Honeypot::generate('my_name', 'my_time') !!}
...
{!! Form::close() !!}

Other Laravel versions:

{{ Form::open('contact') }}
...
{{ Honeypot::generate('my_name', 'my_time') }}
Expand Down Expand Up @@ -65,4 +75,4 @@ Based on work originally created by Ian Landsman: <https://github.com/ianlandsma

## License

This work is MIT-licensed by Maksim Surguy.
This work is MIT-licensed by Maksim Surguy.

0 comments on commit 3047f85

Please sign in to comment.