Echo order box (in pages)

First you need to get the value from attributes, option page or meta value; if you have an option page you need to call that value:

$valuerequired = get_option('ctech_valuefromoptionpage');
ctech is the short theme name, and
if the attributes field is a meta value

$price = get_post_meta($post->ID, 'price', true);

then you can echo the value with echo $price; and echo $valuerequired;