MOON
Server: Apache
System: Linux u18017238.onlinehome-server.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User: emblazeone (1003)
PHP: 7.3.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/emblazeone/public_html/limitlessfit/frontend/views/profile/index.php
<section class="dashboard">
    <div class="container">
        <?php
            echo $this->render('../site/profile-image');
        ?>
        <div class="row mb-3">
            <div class="col-sm-12 col-12">
                <div class="bg_white radius d-flex flex-wrap align-items-center">
                    <?
                        $form=\yii\widgets\ActiveForm::begin([
                            'options'=>[
                                    'style'=>'width:100%;'
                            ]
                        ]);
                    ?>
                        <div class="row">
                            <div class="col-md-6">
                                <?=$form->field($model,'email')->textInput()?>
                                <?=$form->field($model,'first_name')->textInput()?>
                                <?=$form->field($model,'last_name')->textInput()?>
                                <?=$form->field($model,'goal_id')->dropDownList(\backend\modules\clients\models\Client::getGoals())?>
                            </div>
                            <div class="col-md-6">
                                <?=$form->field($model,'newPassword')->passwordInput()?>
                                <?=$form->field($model,'passwordConfirmation')->passwordInput()?>
                                <?=$form->field($model,'address')->textInput()?>
                                <?=$form->field($model,'country')->textInput()?>
                            </div>
                            <div class="col-md-12 text-right">
                                <button class="btn btn-success">Save</button>
                            </div>
                        </div>
                    <? \yii\widgets\ActiveForm::end(); ?>
                </div>
            </div>
        </div>
    </div>
</section>