|
0
|
1 <x-guest-layout>
|
|
|
2 <form method="POST" action="{{ route('register') }}">
|
|
|
3 @csrf
|
|
|
4
|
|
|
5 <!-- Name -->
|
|
|
6 <div class="mb-3">
|
|
|
7 <x-input-label for="name" :value="__('Name')" />
|
|
|
8 <x-text-input id="name" class="form-control" type="text" name="name" :value="old('name')" required autofocus autocomplete="name" />
|
|
|
9 <x-input-error :messages="$errors->get('name')" class="mt-2" />
|
|
|
10 </div>
|
|
|
11
|
|
|
12 <!-- Email Address -->
|
|
|
13 <div class="mb-3">
|
|
|
14 <x-input-label for="email" :value="__('Email')" />
|
|
|
15 <x-text-input id="email" class="form-control" type="email" name="email" :value="old('email')" required autocomplete="username" />
|
|
|
16 <x-input-error :messages="$errors->get('email')" class="mt-2" />
|
|
|
17 </div>
|
|
|
18
|
|
|
19 <!-- Password -->
|
|
|
20 <div class="mb-3">
|
|
|
21 <x-input-label for="password" :value="__('Password')" />
|
|
|
22
|
|
|
23 <x-text-input id="password" class="form-control"
|
|
|
24 type="password"
|
|
|
25 name="password"
|
|
|
26 required autocomplete="new-password" />
|
|
|
27
|
|
|
28 <x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
|
29 </div>
|
|
|
30
|
|
|
31 <!-- Confirm Password -->
|
|
|
32 <div class="mb-3">
|
|
|
33 <x-input-label for="password_confirmation" :value="__('Confirm Password')" />
|
|
|
34
|
|
|
35 <x-text-input id="password_confirmation" class="form-control"
|
|
|
36 type="password"
|
|
|
37 name="password_confirmation" required autocomplete="new-password" />
|
|
|
38
|
|
|
39 <x-input-error :messages="$errors->get('password_confirmation')" class="mt-2" />
|
|
|
40 </div>
|
|
|
41
|
|
|
42 <div class="d-flex justify-content-end mt-4">
|
|
|
43 <a class="text-decoration-underline text-muted me-4" href="{{ route('login') }}">
|
|
|
44 {{ __('Already registered?') }}
|
|
|
45 </a>
|
|
|
46
|
|
|
47 <button type="submit" class="btn btn-primary">
|
|
|
48 {{ __('Register') }}
|
|
|
49 </button>
|
|
|
50 </div>
|
|
|
51 </form>
|
|
|
52 </x-guest-layout>
|