match_making/resources/views/components/auth-session-status.blade.php
2025-01-02 09:09:28 +07:00

8 lines
160 B
PHP

@props(['status'])
@if ($status)
<div {{ $attributes->merge(['class' => 'font-medium text-sm text-green-600']) }}>
{{ $status }}
</div>
@endif