@csrf

User Login

@if(Session::has('login_error')) @endif @if(Session::has('success')) @endif @if(Session::has('error')) @endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Remember Me
@csrf

Enter your e-mail address below to reset your password.

@if ($errors->has('email')) {{ $errors->first('email') }} @endif
Login page
@csrf

Reset Password

@if(Session::has('login_error')) @endif @if(Session::has('success')) @endif @if(Session::has('error')) @endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif