diff --git a/app/src/View/Helper/FieldHelper.php b/app/src/View/Helper/FieldHelper.php
index faf3a1653..bc0664d77 100644
--- a/app/src/View/Helper/FieldHelper.php
+++ b/app/src/View/Helper/FieldHelper.php
@@ -100,8 +100,9 @@ public function control(string $fieldName,
// Specify a class on the
form control wrapper
$liClass = $cssClass;
- // Collect any supplemental markup and/or JavaScript to pass along for field construction
- $fieldSupplement = !empty($config['supplement']) ? $config['supplement'] : '';
+ // Collect any supplemental markup and/or JavaScript to pass along for field construction.
+ // Suppliment is an array: supplement['beforeField' => 'string', 'afterField' => 'string'].
+ $fieldSupplement = !empty($config['supplement']) ? $config['supplement'] : [];
// Remove prefix from field value
if(isset($config['prefix'], $this->getView()->get('vv_obj')->$fieldName)) {
@@ -278,10 +279,18 @@ protected function endLine(): string {
* @return string Form Info HTML
*/
- protected function formInfoDiv(string $content, string $supplement): string {
- return '