Files
investbrain/resources/views/components/ib-form.blade.php
T

21 lines
395 B
PHP

@props([
'noSeparator' => false,
])
<form
{{ $attributes->whereDoesntStartWith('class') }}
{{ $attributes->class(['grid grid-flow-row auto-rows-min gap-3']) }}
>
{{ $slot }}
@if ($actions)
@if(!$noSeparator)
<hr class="my-3" />
@endif
<div class="flex justify-between gap-3">
{{ $actions}}
</div>
@endif
</form>