15 lines
524 B
PHP
15 lines
524 B
PHP
@php use Illuminate\Support\Facades\Auth; @endphp
|
|
<x-layout.guest>
|
|
<x-slot:heading>Welcome to AuditionAdmin</x-slot:heading>
|
|
|
|
<div class="flex justify-center">
|
|
<div class="overflow-hidden rounded-lg bg-white shadow mt-4">
|
|
<div class="px-4 py-5 sm:p-6">
|
|
<x-form.button href="/login" class="px-40">Login</x-form.button>
|
|
<x-form.button href="/register" class="px-40 mt-3">Create Account</x-form.button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</x-layout.guest>
|