Hi,
You can not set minimum people and maximum peoples for each tour in Travelo theme.
If you want to change selectable numbers, please edit /inc/frontend/tour/templates.php file in theme directory.
You can find following code and change the number 10.
<select name="adults" class="full-width">
<?php
for ( $i = 1; $i <= 10; $i++ ) {
$selected = ( $i == $adults ) ? 'selected' : '';
echo '<option value="' . esc_attr( $i ) . '" ' . $selected . '>' . esc_html( $i ) . '</option>';
}
?>
</select>
Regards, Kelly