@props([ 'id' => null, 'type' => 'info', 'title' => null, 'description' => null, 'icon' => null, 'submitButtonLabel' => 'Submit', 'submitButtonColor' => null, 'submitButtonAttrs' => [], 'closeButtonLabel' => trans('core/base::base.close'), 'closeButtonColor' => null, 'formAction' => null, 'formMethod' => 'POST', 'formAttrs' => [], 'hasForm' => false, ]) @php $submitButtonColor ??= $type; @endphp merge(['size' => 'sm', 'closeButton' => false]) }} :body-attrs="['class' => 'text-center py-4']" :form-action="$formAction" :form-method="$formMethod" :form-attrs="$formAttrs" :has-form="$hasForm" > @if (!empty($description))
{!! $description !!}
@else {{ $slot }} @endif
@if (!isset($footer))
@else {{ $footer }} @endif