I would like to add a note box on the Woocommerce shopping cart page in the coupon section of the Woocommerce shopping cart. This field should be something like the Woocommerce Order Checkout Order Notes page, where a customer can add multiple notes.
So far, I have this code that indicates my desired location:
add_action ('woocommerce_after_cart_table','add_content_below_cart_coupon'); function add_content_below_cart_coupon () { echo 'this will show below the cart cuopon'; }

How to add a notes field to this area so that these customer notes also appear in the order details on the checkout page?
Thanks!
source share