Hello, Soumya,
WooCommerce plugin in the latest update made input hidden if it is available for 1 purchase only.
As a temporary fix, please add the next code in child-theme/functions.php file:
add_filter('woocommerce_quantity_input_type', function($type) {
return 'number';
});
Kind Regards,
8theme team