SuiteCRM 8.5.1 not showing enable SAML Authentication checkbox not showing under Password Management UI. Also tried to set it via .env.local file still not working SAML

Hello,

I want to enable SAML Authentication into my application, but “Enable SAML Authentication” checkbox is not visible in UI under Password Management.

I tried it enabling from the .env.local file using below setting, still not able to enable the Azure SAML Integration.

SAML Authentication Configuration

SAML_ENABLED=true

The URL of your Identity Provider (IdP) Single Sign-On Service (Login URL in Azure AD)

SAML_SSO_URL=“https://login.microsoftonline.com/{your-tenant-id}/saml2”

The URL to which the IdP will send the SAML assertion (Assertion Consumer Service URL in Azure AD)

SAML_ACS_URL=“https://crm.example.com/public/legacy/index.php?module=Users&action=Authenticate”

The Entity ID (Identifier) of your Identity Provider (Azure AD Identifier)

SAML_IDP_ENTITY_ID=“https://sts.windows.net/{your-tenant-id}/”

Your SuiteCRM’s Entity ID (This should be your SuiteCRM URL)

SAML_SP_ENTITY_ID=“https://crm.example.com”

The X.509 certificate from Azure AD (you can copy this from the Federation Metadata XML)

SAML_X509_CERT=“-----BEGIN CERTIFICATE-----
MIIDyzCCArOgAwIBAgIQCgooq+meS6N5NGR9VJgdFTANBgkqhkiG9w0BAQsFADBg
…
-----END CERTIFICATE-----”

Whether to sign the SAML requests (optional)

SAML_REQUEST_SIGNING=true

Optional: Enable/Disable SAML response and assertion validation

SAML_VALIDATE_SIGNATURE=true
SAML_VALIDATE_RESPONSE=true
SAML_VALIDATE_ASSERTION=true

Can anyone guide or help me, what am I missing here.