Hi @jadejd
Your code: <?php acf_form( $options ); ?>
contains a parameter of $options, but this variable is never defined.
A variable that has not been defined cannot be passed into a function. You must either define $options as a valid array (please read the acf_form documentation) or don’t pass the variable at all.
Thanks
E