Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Merge 3b02dbb into 08762f2
Browse files Browse the repository at this point in the history
  • Loading branch information
smokills committed Oct 18, 2018
2 parents 08762f2 + 3b02dbb commit 0dba498
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -10,18 +10,18 @@ This package allows you to register custom "tag helpers" in your Laravel applica
For example, instead of this:

```html
<form csrf method="delete">

</form>
<form method="post">
<input type="hidden" name="_method" value="DELETE">
<input type="hidden" name="_token" value="csrf-token">
</form>
```

You can use custom tag helpers to turn this code into this:

```html
<form method="post">
<input type="hidden" name="_method" value="DELETE">
<input type="hidden" name="_token" value="csrf-token">
</form>
<form csrf method="delete">

</form>
```

## Installation
Expand Down

0 comments on commit 0dba498

Please sign in to comment.