fix(admin): use two-column layout for recaptcha settings form

This commit is contained in:
FrankZamora
2026-01-08 17:18:55 -06:00
parent cfa2905722
commit a93e54e1b8

View File

@@ -24,10 +24,23 @@ final class RecaptchaSettingsFormBuilder
$html = ''; $html = '';
$html .= $this->buildHeader($componentId); $html .= $this->buildHeader($componentId);
// LAYOUT 2 COLUMNAS
$html .= '<div class="row g-3">';
// COLUMNA IZQUIERDA (6 cols)
$html .= ' <div class="col-lg-6">';
$html .= $this->buildVisibilityGroup($componentId); $html .= $this->buildVisibilityGroup($componentId);
$html .= $this->buildCredentialsGroup($componentId); $html .= $this->buildCredentialsGroup($componentId);
$html .= ' </div>';
// COLUMNA DERECHA (6 cols)
$html .= ' <div class="col-lg-6">';
$html .= $this->buildBehaviorGroup($componentId); $html .= $this->buildBehaviorGroup($componentId);
$html .= $this->buildHelpSection(); $html .= $this->buildHelpSection();
$html .= ' </div>';
$html .= '</div>';
return $html; return $html;
} }