5 <x-application-logo class="w-20 h-20 fill-current text-gray-500" />
9 <!-- Validation Errors -->
10 <x-auth-validation-errors class="mb-4" :errors="$errors" />
12 <form method="POST" action="{{ route('register') }}">
17 <x-label for="name" :value="__('Name')" />
19 <x-input id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autofocus />
22 <!-- Email Address -->
24 <x-label for="email" :value="__('Email')" />
26 <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required />
31 <x-label for="password" :value="__('Password')" />
33 <x-input id="password" class="block mt-1 w-full"
36 required autocomplete="new-password" />
39 <!-- Confirm Password -->
41 <x-label for="password_confirmation" :value="__('Confirm Password')" />
43 <x-input id="password_confirmation" class="block mt-1 w-full"
45 name="password_confirmation" required />
48 <div class="flex items-center justify-end mt-4">
49 <a class="underline text-sm text-gray-600 hover:text-gray-900" href="{{ route('login') }}">
50 {{ __('Already registered?') }}
53 <x-button class="ml-4">