@extends('layouts.auth') @section('content')
@include('elements.auth-forms-left-section')

{{ __('Login') }}

{{ __('Enter your email address and password to access account.') }}

@csrf
@error('email') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot Your Password?') }} @endif @error('password') {{ $message }} @enderror

{{ __("Don't have an account?") }} {{ __('Sign up') }}

@endsection