We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2229f8f commit 4571536Copy full SHA for 4571536
src/Forms/CustomForms.php
@@ -23,8 +23,8 @@ public static function get(array $customFields): array
23
->placeholder(__($field['placeholder']))
24
->required($field['required'])
25
->rules($field['rules']);
26
-
27
- }elseif ($field['type'] === TypeFieldEnum::Password->value) {
+
+ } elseif ($field['type'] === TypeFieldEnum::Password->value) {
28
29
$fields[] = TextInput::make($fieldKey)
30
->label(__($field['label']))
@@ -34,7 +34,7 @@ public static function get(array $customFields): array
34
35
36
37
- }elseif ($field['type'] === TypeFieldEnum::Url->value) {
+ } elseif ($field['type'] === TypeFieldEnum::Url->value) {
38
39
40
0 commit comments