@extends('layouts.app') @section('title') Login @endsection @section('content') @if ($userCount) @if (session('status'))
{{ session('status') }}
@endif

Log In

@csrf @honeypot
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@if ($altLogins)

Alternate Logins

@foreach ($altLogins as $provider => $site) @if (isset($site['login']) && $site['login'])
Login With {{ ucfirst($provider) }}
@endif @endforeach @endif @else @include('auth._require_setup') @endif @endsection