auditionadmin/resources/views/welcome.blade.php

15 lines
544 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-auth.form-button href="/login" class="px-40">Login</x-auth.form-button>
<x-auth.form-button href="/register" class="px-40 mt-3">Create Account</x-auth.form-button>
</div>
</div>
</div>
</x-layout.guest>