mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
94 lines
3.1 KiB
PHP
94 lines
3.1 KiB
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Events\Registered;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Validation\Rules;
|
|
use Livewire\Attributes\Layout;
|
|
use Livewire\Volt\Component;
|
|
|
|
new #[Layout('components.layouts.auth')] class extends Component {
|
|
public string $name = '';
|
|
public string $email = '';
|
|
public string $password = '';
|
|
public string $password_confirmation = '';
|
|
|
|
/**
|
|
* Handle an incoming registration request.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$validated = $this->validate([
|
|
'name' => ['required', 'string', 'max:255'],
|
|
'email' => ['required', 'string', 'lowercase', 'email', 'max:255', 'unique:' . User::class],
|
|
'password' => ['required', 'string', 'confirmed', Rules\Password::defaults()],
|
|
]);
|
|
|
|
$validated['password'] = Hash::make($validated['password']);
|
|
|
|
event(new Registered(($user = User::create($validated))));
|
|
|
|
Auth::login($user);
|
|
|
|
$this->redirect(route('dashboard', absolute: false), navigate: true);
|
|
}
|
|
}; ?>
|
|
|
|
<div class="flex flex-col gap-6">
|
|
<x-auth-header title="Create an account" description="Enter your details below to create your account" />
|
|
|
|
<!-- Session Status -->
|
|
<x-auth-session-status class="text-center" :status="session('status')" />
|
|
|
|
<form wire:submit="register" class="flex flex-col gap-6">
|
|
<!-- Name -->
|
|
<div class="grid gap-2">
|
|
<flux:input wire:model="name" id="name" label="{{ __('Name') }}" type="text" name="name" required autofocus autocomplete="name" placeholder="Full name" />
|
|
</div>
|
|
|
|
<!-- Email Address -->
|
|
<div class="grid gap-2">
|
|
<flux:input wire:model="email" id="email" label="{{ __('Email address') }}" type="email" name="email" required autocomplete="email" placeholder="email@example.com" />
|
|
</div>
|
|
|
|
<!-- Password -->
|
|
<div class="grid gap-2">
|
|
<flux:input
|
|
wire:model="password"
|
|
id="password"
|
|
label="{{ __('Password') }}"
|
|
type="password"
|
|
name="password"
|
|
required
|
|
autocomplete="new-password"
|
|
placeholder="Password"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Confirm Password -->
|
|
<div class="grid gap-2">
|
|
<flux:input
|
|
wire:model="password_confirmation"
|
|
id="password_confirmation"
|
|
label="{{ __('Confirm password') }}"
|
|
type="password"
|
|
name="password_confirmation"
|
|
required
|
|
autocomplete="new-password"
|
|
placeholder="Confirm password"
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex items-center justify-end">
|
|
<flux:button type="submit" variant="primary" class="w-full">
|
|
{{ __('Create account') }}
|
|
</flux:button>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="space-x-1 text-center text-sm text-zinc-600 dark:text-zinc-400">
|
|
Already have an account?
|
|
<x-text-link href="{{ route('login') }}">Log in</x-text-link>
|
|
</div>
|
|
</div>
|