我正在尝试登录本地服务器上的网站,它给我419错误。 甚至我都对所有文件和文件夹都授予了正确的权限,并且还给CSRF令牌提供了以下登录表单:
<form method="POST" action="{{ route('login') }}">
@csrf
<div class="form-group row">
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
<div class="col-md-6">
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
在实时网络服务器上运行正常。我该怎么解决? 预先感谢。