</div>
    </div>
<?php 
}
?>
<div class="sln-tab" id="sln-tab-booking">
    <div class="row form-inline">
        <div class="col-md-6">
            <div class="form-group">
                <label for="salon_settings[parallels]">
                    <?php 
_e('How many people you can attend during a single time/session?', 'sln');
?>
                </label>
                <?php 
echo SLN_Form::fieldNumeric("salon_settings[parallels_hour]", $this->getOpt('parallels_hour'), array('min' => 1, 'max' => 20));
?>
                
            </div>
<?php 
/*
            <div class="form-group">
                <label for="salon_settings[parallels]">
                    <?php _e('How many people you can serve at the same day?', 'sln') ?>
                </label>
                <?php echo SLN_Form::fieldNumeric(
                    "salon_settings[parallels_day]",
                    $this->getOpt('parallels_day'),
                    array('min' => 0, 'max' => 100)
                ) ?>
                <p class="help-block"><?php _e(
?>
</label>
            <?php 
SLN_Form::fieldText($helper->getFieldName($postType, 'price'), $service->getPrice());
?>
        </div>
    </div>
    <div class="col-xs-6 col-md-3 col-sm-2 col-lg-2">
        <div class="form-group">

            <label><?php 
_e('Unit per hour', 'sln');
?>
</label>
            <?php 
SLN_Form::fieldNumeric($helper->getFieldName($postType, 'unit'), $service->getUnitPerHour());
?>
        </div>
    </div>
    <div class="col-xs-6 col-md-3 col-sm-2 col-lg-2">
        <div class="form-group">

            <label><?php 
_e('Duration', 'sln');
?>
</label>
            <?php 
SLN_Form::fieldTime($helper->getFieldName($postType, 'duration'), $service->getDuration());
?>
        </div>
    </div>