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

Welcome Back

Sign in to your account

@if (session('status'))
{{ session('status') }}
@endif
@csrf
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@if (Route::has('password.request')) Forgot password? @endif
@endsection