Assuming the forms use Laravel’s `web` routes, CSRF protection is enabled by the `web` middleware and `CSRF middleware` by default. Add `@csrf` inside every Blade form: ```blade <form method="POST" action="{{ route('posts.store') }}"> @csrf <!-- fields --> <button type="submit">Save</button> </form> ``` For `PUT`, `PATCH`, or `DELETE` forms, include both directives: ```blade <form method="POST" action="{{ route('posts.destroy', $post) }}"> @csrf @method('DELETE') <button type="submit">Delete<...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill laravel-security --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Laravel Security?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-laravel-security-895c0ae8)More formats (shields.io, HTML) on the badges page.
Assuming the forms use Laravel’s `web` routes, CSRF protection is enabled by the `web` middleware and `CSRF middleware` by default.
Add `@csrf` inside every Blade form:
```blade
<form method="POST" action="{{ route('posts.store') }}">
@csrf
<!-- fields -->
<button type="submit">Save</button>
</form>
```
For `PUT`, `PATCH`, or `DELETE` forms, include both directives:
```blade
<form method="POST" action="{{ route('posts.destroy', $post) }}">
@csrf
@method('DELETE')
<button type="submit">Delete</button>
</form>
```
Do not disable CSRF globally. Exclude only trusted third-party callbacks, such as `/webhook`, when necessary:
```php
->withMiddleware(function ($middleware) {
$middleware->validateCsrfTokens(except: [
'/webhook',
]);
});
```
Ensure the routes remain in `routes/web.php` or otherwise use the `web` middleware.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!