Answers for "how to add a csrf token on laravel"

PHP
1

laravel csrf-token in view

<head>

    <meta name="csrf-token" content="{{ csrf_token() }}" />

</head>
Posted by: Guest on June-15-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