示例#1
0
                    </div>
                    <?php 
$form->open(array("attributes" => array("class" => "form-horizontal compose-form", "id" => "estimates-form")));
?>
                    <div class="modal-body">
                        <div style="margin-bottom: 0"
                             class="form-group <?php 
echo $model->has_error("reply_to") ? "has-error" : null;
?>
">
                            <?php 
$form->label("reply_to", array("text" => __('Price', 'artgorae'), "attributes" => array("class" => "control-label col-sm-2 hidden-xs hidden-sm")));
?>
                            <div class="col-md-10 col-sm-12 col-xs-12">
                                <?php 
$form->number("reply_to", array("attributes" => array("class" => "form-control", "placeholder" => __('10,000', 'artgorae'), "required" => "required")));
?>
                                <?php 
do_action('mm_compose_form_after_reply_to', $form, $model);
?>
                                <span class="help-block m-b-none error-reply_to"><?php 
$form->error("reply_to");
?>
</span>
                            </div>
                            <div class="clearfix"></div>
                        </div>
                        <div style="margin-bottom: 0"
                             class="form-group <?php 
echo $model->has_error("subject") ? "has-error" : null;
?>