@extends('layouts.auth') @section('title', 'Login') @section('content')

{{ __('login') }}

{{ __('please_enter_your_email_address_to_receive_a_verification_code') }}

@csrf
@if (session('danger')) {{ session('danger') }} @endif @if (session('success')) {{ session('success') }} @endif @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif
@endsection @section('js') @endsection