From 952abace920a3f3b74ad0083546b8eb8ee5a6149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 1 Nov 2025 10:15:39 +0100 Subject: [PATCH] Add template support for password hash helper Allow templates to specify a default password hash algorithm via the 'helper' attribute. When set, new password fields will default to this hash type instead of CLEAR. Example template usage: { "attributes": { "userPassword": { "display": "Password", "helper": "ARGON2ID", "order": 1 } } } --- resources/views/components/attribute/value/password.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/components/attribute/value/password.blade.php b/resources/views/components/attribute/value/password.blade.php index 06ab473b..c439204e 100644 --- a/resources/views/components/attribute/value/password.blade.php +++ b/resources/views/components/attribute/value/password.blade.php @@ -10,7 +10,7 @@