2025-12-29 02:57:25 +01:00
|
|
|
@extends('components.layouts.guest')
|
|
|
|
|
|
|
|
|
|
@section('content')
|
2026-01-04 02:41:00 +01:00
|
|
|
<h2 class="text-xl text-center text-accent-blue mb-4">Sign in to your account</h2>
|
|
|
|
|
|
2025-12-29 02:57:25 +01:00
|
|
|
<form method="POST" action="{{ route('login') }}">
|
|
|
|
|
@csrf
|
2025-12-26 13:37:23 +01:00
|
|
|
|
2026-01-04 02:41:00 +01:00
|
|
|
<x-input
|
|
|
|
|
type="email"
|
|
|
|
|
name="email"
|
|
|
|
|
label="Email"
|
|
|
|
|
placeholder="you@example.com"
|
|
|
|
|
required
|
|
|
|
|
autofocus
|
|
|
|
|
/>
|
2025-12-26 13:37:23 +01:00
|
|
|
|
2026-01-04 02:41:00 +01:00
|
|
|
<x-input
|
|
|
|
|
type="password"
|
|
|
|
|
name="password"
|
|
|
|
|
label="Password"
|
|
|
|
|
placeholder="Enter your password"
|
|
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<x-checkbox name="remember" label="Remember me" />
|
2025-12-26 13:37:23 +01:00
|
|
|
|
2026-01-04 02:41:00 +01:00
|
|
|
<x-button type="submit" class="w-full">
|
|
|
|
|
Sign In
|
|
|
|
|
</x-button>
|
2025-12-26 13:37:23 +01:00
|
|
|
|
2026-01-04 02:41:00 +01:00
|
|
|
<div class="text-center mt-4">
|
|
|
|
|
<span class="text-sm text-gray-400">Don't have an account?</span>
|
|
|
|
|
<a href="{{ route('register') }}" class="text-accent-blue hover:underline text-sm ml-1">Register</a>
|
2025-12-26 13:37:23 +01:00
|
|
|
</div>
|
|
|
|
|
</form>
|
2026-01-04 02:41:00 +01:00
|
|
|
@endsection
|