byos_laravel/resources/views/components/auth-header.blade.php
Benjamin Nussbaum 94f5cabcff
feat: update to Laravel 12 starter kit (#1)
fix: path of ScreenGeneratorCommand
2025-02-25 12:15:35 +01:00

9 lines
255 B
PHP

@props([
'title',
'description',
])
<div class="flex w-full flex-col gap-2 text-center">
<h1 class="text-xl font-medium dark:text-zinc-200">{{ $title }}</h1>
<p class="text-center text-sm dark:text-zinc-400">{{ $description }}</p>
</div>