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

15 lines
677 B
PHP

<x-layout.guest>
<x-slot:heading>Log In</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="/login" method="POST">
@csrf
<x-auth.form-field name="email" label="Email address" type="email" autocomplete="email" required />
<x-auth.form-field name="password" label="Password" type="password" required />
<x-auth.rememberme-forgotpassword />
<x-auth.form-button>Log In</x-auth.form-button>
</form>
</div>
</div>
</x-layout.guest>