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