Laravel CSRF-Token
<head>
<meta name="csrf-token" content="{{ csrf_token() }}" />
</head>
Smiling Starling
<head>
<meta name="csrf-token" content="{{ csrf_token() }}" />
</head>
{{ csrf_token() }}
{{ csrf_field() }}
<form method="POST" action="/profile">
@csrf
<input name="name">
<button type="submit">send</button>
</form>