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

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@if(Route::has('password.request')) Forgot password? @endif
@if($errors->has('login'))
{{ $errors->first('login') }}
@endif
@endsection