@props([ 'id', 'title', 'size' => 'md', 'formAction' => null, 'formMethod' => 'POST', 'closeText' => 'Cerrar', 'submitText' => 'Guardar Cambios', 'submitColor' => 'primary', 'static' => false, 'blur' => true, // Nuevo: Efecto blur en el fondo ]) @php $realMethod = strtoupper($formMethod); $htmlMethod = in_array($realMethod, ['PUT', 'PATCH', 'DELETE']) ? 'POST' : $realMethod; $needsMethodSpoofing = $htmlMethod !== $realMethod; $backdropClass = $blur ? 'modal-backdrop-blur' : ''; @endphp
@pushonce('css') @endpushonce