auditionadmin/resources/views/auth/register.blade.php

19 lines
1.3 KiB
PHP

<x-layout.guest>
<x-slot:heading>Create an Account</x-slot:heading>
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
<div class="bg-white px-6 py-12 shadow sm:rounded-lg sm:px-12">
<form class="space-y-6" action="/register" method="POST">
@csrf
<x-auth.form-field name="first_name" label="First Name" type="text" autocomplete="given-name" required />
<x-auth.form-field name="last_name" label="Last Name" type="text" autocomplete="family-name" required />
<x-auth.form-field name="email" label="Email address" type="email" autocomplete="email" required />
<x-auth.form-field name="cell_phone" label="Cell Phone Number" type="tel" autocomplete="tel-national" />
<x-auth.form-field name="judging_preference" label="Judging Preference" type="text" />
<x-auth.form-field name="password" label="Password" type="password" autocomplete="new-password" required />
<x-auth.form-field name="password_confirmation" label="Confirm Password" autocomplete="new-password" type="password" required />
<x-auth.form-button>Create Account</x-auth.form-button>
</form>
</div>
</div>
</x-layout.guest>