Answers for "laravel not csrf token"

PHP
2

laravel csrf token off

//In laravel 7. Open file \App\Http\Middleware\VerifyCsrfToken.php
//Disable for all routes

protected $except = [
    '*',
];
//Disable for some routes
 protected $except = [
    'mobile/*',
    'news/articles',
];
//I searched for a long time how to disable CSRF completely,
//there are many identical examples but they do not help
Posted by: Guest on August-07-2021
1

laravel csrf token

<form method="POST" action="/profile">
    @csrf
    <input name="name">
  	<button type="submit">send</button>
</form>
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language