Файловый менеджер - Редактировать - /home/clickysoft/public_html/somni.clickysoft.net/storage/framework/views/eff6e94fd0c2afcdf9d8089b5c4a29f4.php
Назад
<?php $__env->startSection('content'); ?> <div class="col-md-12 col-lg-12 col-xl-9"> <div class="row"> <div class="col-md-12"> <div class="edf-cancel"> <div class="mod-heads "> <h3> My Profile </h3> <p>Access, manage, and personalize your account details all in one place </p> </div> <div class="edit-cancel-button"> <button type="button" class="cancel-btn"> Cancel </button> <button class="edit-btn"> Edit Profile </button> </div> </div> </div> <div class="col-md-12 col-lg-7"> <form action="<?php echo e(route('update.profile')); ?>" id="profile_edit_form" method="POST" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="profile-upload-wrapper"> <div class="avatar-upload"> <p class="photo-text">Photo</p> <input type='file' id="imageUpload" accept=".png, .jpg, .jpeg" name="profile_image" value="" /> <div class="avatar-preview"> <div id="imagePreview" style="background-image:url('<?php echo e(!empty($user->getMedia('profile_image')->first())? $user->getMedia('profile_image')->first()->getUrl(): '/images/dummy-upload.png'); ?>')"> </div> <div class="hover-upload"><label for="imageUpload"><svg xmlns="http://www.w3.org/2000/svg" width="41" height="33" viewBox="0 0 41 33" fill="none"> <path d="M20.2716 12.7387C16.9844 12.7387 14.3202 15.4042 14.3202 18.6901C14.3202 21.9773 16.9844 24.6415 20.2716 24.6415C23.558 24.6415 26.223 21.9773 26.223 18.6901C26.223 15.4042 23.558 12.7387 20.2716 12.7387ZM36.142 6.78734H31.3809C30.7262 6.78734 30.0208 6.27949 29.8141 5.65816L28.5833 1.96472C28.3758 1.34379 27.6712 0.835938 27.0165 0.835938H13.5267C12.872 0.835938 12.1666 1.34379 11.9599 1.96512L10.7291 5.65856C10.5216 6.27949 9.81697 6.78734 9.16232 6.78734H4.4012C2.21901 6.78734 0.433594 8.57276 0.433594 10.7549V28.6091C0.433594 30.7913 2.21901 32.5768 4.4012 32.5768H36.142C38.3242 32.5768 40.1096 30.7913 40.1096 28.6091V10.7549C40.1096 8.57276 38.3242 6.78734 36.142 6.78734ZM20.2716 28.6091C14.7935 28.6091 10.3526 24.1682 10.3526 18.6901C10.3526 13.2125 14.7935 8.77114 20.2716 8.77114C25.7489 8.77114 30.1906 13.2125 30.1906 18.6901C30.1906 24.1682 25.7489 28.6091 20.2716 28.6091ZM34.7533 13.5295C33.9868 13.5295 33.3647 12.9082 33.3647 12.1408C33.3647 11.3743 33.9868 10.7522 34.7533 10.7522C35.5207 10.7522 36.142 11.3743 36.142 12.1408C36.142 12.9082 35.5203 13.5295 34.7533 13.5295Z" fill="white" /> </svg></label></div> </div> <div class="three-dots"> <p> <span class="th-dots"></span><span class="th-dots"></span> <span class="th-dots"></span> </p> </div> </div> <p class="note-upload">The uploaded image must be 500px wide and 500px long</p> </div> <div class="profile-fields-main"> <div class="profile-fields"> <label for="">Name<span>*</span></label> <input type="text" <?php echo e($errors->any() ? '' : 'disabled'); ?> value="<?php echo e(old('name', $user->name)); ?>" placeholder="Name" name="name"> <?php $__errorArgs = ['name']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="text-danger" id="name-error"><?php echo e($message); ?></span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="profile-fields"> <label for="">Email</label> <input type="email" class="specific-disabled" disabled="disabled" value="<?php echo e(old('email', $user->email)); ?>" placeholder="Email" name="email"> </div> <div class="profile-fields"> <label for="">Phone Number</label> <input type="text" <?php echo e($errors->any() ? '' : 'disabled'); ?> value="<?php echo e(old('phone', $user->phone)); ?>" placeholder="Phone Number" name="phone"> </div> <?php $__errorArgs = ['phone']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="text-danger" id="phone-error"><?php echo e($message); ?></span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> <div class="profile-fields"> <label for="<?php echo e($user->isLanlord ? 'Mailing Address' : 'Secondary Email'); ?>"> </label> <input type="text" <?php echo e($errors->any() ? '' : 'disabled'); ?> value="<?php echo e(old('mailing_address', optional($user->userInfos)->mailing_address ?: 'Enter your address')); ?>" placeholder="<?php echo e($user->isLanlord ? 'Mailing Address' : 'Secondary Email'); ?>" name="mailing_address"> <?php $__errorArgs = ['mailing_address']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="text-danger" id="mailing_address-error"><?php echo e($message); ?></span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php if($user->isLanlord): ?> <div class="profile-fields"> <label for="">Company Phone</label> <input type="text" <?php echo e($errors->any() ? '' : 'disabled'); ?> value="<?php echo e(old('company_phone', optional($user->userInfos)->company_phone)); ?>" placeholder="Company Phone" name="company_phone"> <?php $__errorArgs = ['company_phone']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="text-danger" id="company_phone-error"><?php echo e($message); ?></span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php endif; ?> <div class="profile-fields"> <label for="">Bio</label> <textarea class="custom-resizer" <?php echo e($errors->any() ? '' : 'disabled'); ?> name="bio" id="" cols="30" rows="5" placeholder="Enter bio information here..."><?php echo e(old('bio', optional($user->userInfos)->bio)); ?></textarea> <?php $__errorArgs = ['bio']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <span class="text-danger" id="bio-error"><?php echo e($message); ?></span> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> </div> <div class="col-md-12"> <div class="save-changes-button"> <button type="submit" class="save-changes-btn">Save Changes</button> </div> </div> </form> </div> </div> </div> <link href="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.27/dist/sweetalert2.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.27/dist/sweetalert2.all.min.js"></script> <script src="https://cdn.socket.io/socket.io-4.1.1.min.js"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('profile.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/clickysoft/public_html/somni.clickysoft.net/resources/views/profile/edit.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка