2026-01-22 21:53:12 +01:00
|
|
|
<x-guest-layout>
|
2026-01-23 00:56:01 +01:00
|
|
|
<div class="mb-6 text-center">
|
|
|
|
|
<h2 class="text-2xl font-bold text-gray-900">Create an account</h2>
|
|
|
|
|
<p class="mt-1 text-sm text-gray-500">Get started with FFR</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-01-22 21:53:12 +01:00
|
|
|
<form method="POST" action="{{ route('register') }}">
|
|
|
|
|
@csrf
|
|
|
|
|
|
|
|
|
|
<!-- Name -->
|
|
|
|
|
<div>
|
|
|
|
|
<x-input-label for="name" :value="__('Name')" />
|
|
|
|
|
<x-text-input id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autofocus autocomplete="name" />
|
|
|
|
|
<x-input-error :messages="$errors->get('name')" class="mt-2" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Email Address -->
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
<x-input-label for="email" :value="__('Email')" />
|
|
|
|
|
<x-text-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autocomplete="username" />
|
|
|
|
|
<x-input-error :messages="$errors->get('email')" class="mt-2" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Password -->
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
<x-input-label for="password" :value="__('Password')" />
|
|
|
|
|
<x-text-input id="password" class="block mt-1 w-full"
|
|
|
|
|
type="password"
|
|
|
|
|
name="password"
|
|
|
|
|
required autocomplete="new-password" />
|
|
|
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Confirm Password -->
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
<x-input-label for="password_confirmation" :value="__('Confirm Password')" />
|
|
|
|
|
<x-text-input id="password_confirmation" class="block mt-1 w-full"
|
|
|
|
|
type="password"
|
|
|
|
|
name="password_confirmation" required autocomplete="new-password" />
|
|
|
|
|
<x-input-error :messages="$errors->get('password_confirmation')" class="mt-2" />
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-01-23 00:56:01 +01:00
|
|
|
<div class="mt-6">
|
|
|
|
|
<x-primary-button class="w-full justify-center py-3">
|
|
|
|
|
{{ __('Create account') }}
|
2026-01-22 21:53:12 +01:00
|
|
|
</x-primary-button>
|
|
|
|
|
</div>
|
2026-01-23 00:56:01 +01:00
|
|
|
|
|
|
|
|
<div class="mt-6 text-center">
|
|
|
|
|
<span class="text-sm text-gray-500">Already have an account?</span>
|
|
|
|
|
<a class="text-sm text-blue-600 hover:text-blue-800 font-medium ml-1" href="{{ route('login') }}">
|
|
|
|
|
{{ __('Sign in') }}
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2026-01-22 21:53:12 +01:00
|
|
|
</form>
|
|
|
|
|
</x-guest-layout>
|