您好我使用Laravel身份验证。
在我的登录表单中,如果我提交没有填写字段,我会看到一个错误,表明该文件是必需的。但是当我尝试用错误的用户名和密码填写表单时,它必须说"这些凭据与我们的记录不符。"
但它不会说
我正在使用laravel 5.1
@include('errors.error')
{!! Form::open(['url' =>'/login' , 'method'=>'POST','class'=>'form-signin']) !!}
<span id="reauth-email" class="reauth-email"></span>
{!! Form::text('usr_UserName',null, ['class' => 'form-control','placeholder'=>' ']) !!}
{!! Form::password('password', ['class' => 'form-control']) !!}
这是我的表格
@if($errors->any())
<div class="alert alert-danger">
<button class="close" data-close="alert"></button>
@foreach($errors->all() as $error)
<span>
<li> {{ $error }}</li>
</span><br>
@endforeach
</div>
@endif
这是我的错误页面