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

Sign In

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