Files
SealShare/resources/views/components/auth-header.blade.php
T

10 lines
213 B
PHP

@props([
'title',
'description',
])
<div class="flex w-full flex-col text-center">
<h2 class="text-xl font-bold">{{ $title }}</h2>
<p class="text-sm opacity-60 mt-1">{{ $description }}</p>
</div>