Masters and Transaction changes
This commit is contained in:
25
resources/views/vendor/filament/components/fieldset.blade.php
vendored
Normal file
25
resources/views/vendor/filament/components/fieldset.blade.php
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
@props([
|
||||
'label' => null,
|
||||
'labelHidden' => false,
|
||||
])
|
||||
|
||||
<fieldset
|
||||
{{
|
||||
$attributes->class([
|
||||
'fi-fieldset rounded-xl border border-gray-200 p-6 dark:border-white/10',
|
||||
])
|
||||
}}
|
||||
>
|
||||
@if (filled($label))
|
||||
<legend
|
||||
@class([
|
||||
'-ms-2 px-2 text-sm font-medium leading-6 text-gray-950 dark:text-white',
|
||||
'sr-only' => $labelHidden,
|
||||
])
|
||||
>
|
||||
{{ $label }}
|
||||
</legend>
|
||||
@endif
|
||||
|
||||
{{ $slot }}
|
||||
</fieldset>
|
||||
Reference in New Issue
Block a user