using acf_form in front, how to display the product fields and metadata of woocommerce products?

I am creating a form in front-end by ACF to submit products by user as a vendor and save the submitted form as a new product.

this is the code I am using it:

$options = array(
'post_id' => 'new_post',
'post_title' => true,
'post_content' => true,
'new_post'      => array(
  'post_type'       => 'product',
  'post_status'     => 'draft'
 ),
'field_groups' => [$my_field_group_id_created_in_acf],
'form' => true,
 'return' => '%post_url%',
'html_submit_button'    => '<input type="submit" value="%s" />',
'updated_message' => 'Product Created',
'submit_value' => 'Submit Product'

);

acf_form($options);

The output form has title field, content editor, and ACF group fields, but the price field, or other meta data of product(such as regulare price, category, tags and etc) not appears in the form!
How can I display other own product fields or other custom metadata (not related by ACF) in the form for submitting?