topnotch_webshop/resources/views/components/auth-session-status.blade.php

10 lines
167 B
PHP
Raw Normal View History

2025-03-25 15:02:34 -04:00
@props([
'status',
])
@if ($status)
<div {{ $attributes->merge(['class' => 'font-medium text-sm text-green-600']) }}>
{{ $status }}
</div>
@endif