@extends('layouts.auth') @section('title', 'Login') @section('content')
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())

{{ __('Whoops! Something went wrong.') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection