S.I.S
@if(Session::has('errors'))
{{ 'Đăng nhập thất bại' }} @php Session::forget('errors'); @endphp
@endif @if(Session::has('error'))
{{ Session::get('error') ?? ''}} @php Session::forget('error'); @endphp
@endif
{{ csrf_field() }}
@php $email = ''; if (old('email') != '') { $email = old('email'); } @endphp
Tên đăng nhập
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Mật khẩu
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif