i try to show order id on checkout page in woocommerce_before_checkout_form action but i've no value
function action_woocommerce_before_checkout_form( $checkout ) {
var_dump(WC()->order->get_customer_id);
echo'
<div class="right-side">
<div class="logo">';
echo'
</div>
<div class="order-number"></div>
</div>';
};
// add the action
add_action( 'woocommerce_before_checkout_form', 'action_woocommerce_before_checkout_form', 10, 1 );
any one have idea to get order id ?