Edit File: 70e271bf108a903055a8c0645e9474d489589835.php
<?php $__env->startSection('content'); ?> <!-- // Basic multiple Column Form section start --> <section id="multiple-column-form"> <div class="row match-height"> <div class="col-12"> <div class="card"> <div class="card-header"> <h4 class="card-title"><?php echo e(awtTrans('عرض مستخدم ')); ?></h4> </div> <div class="card-content"> <div class="card-body"> <form class="store form-horizontal" > <div class="form-body"> <div class="row"> <div class="col-12"> <div class="imgMontg col-12 text-center"> <div class="dropBox"> <div class="textCenter"> <div class="imagesUploadBlock"> <label class="uploadImg"> <span><i class="feather icon-image"></i></span> <input type="file" accept="image/*" name="avatar" class="imageUploader"> </label> <div class="uploadedBlock"> <img src="<?php echo e($row->AvatarPath); ?>"> </div> </div> </div> </div> </div> </div> <div class="col-md-12 col-12"> <div class="form-group"> <label for="first-name-column"><?php echo e(awtTrans('الاسم')); ?></label> <div class="controls"> <input type="text" name="name" value="<?php echo e($row->name??''); ?>" class="form-control" placeholder="<?php echo e(awtTrans('اكتب الاسم')); ?>" required data-validation-required-message="<?php echo e(awtTrans('هذا الحقل مطلوب')); ?>" > </div> </div> </div> <div class="col-md-12 col-12"> <div class="form-group"> <label for="first-name-column"><?php echo e(awtTrans('رقم الجوال')); ?></label> <div class="controls"> <select style="width: 20% ; position: absolute; left: 3%;" name="country_key" class="select2 form-control" required data-validation-required-message="<?php echo e(awtTrans('هذا الحقل مطلوب')); ?>"> <?php $__currentLoopData = $countries; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option <?php echo e($row->country_key == $key->calling_code ? 'selected' : ''); ?> value="<?php echo e($key->calling_code); ?>"><?php echo e($key->calling_code); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> <input type="number" value="<?php echo e($row->phone); ?>" name="phone" class="form-control" minlength="9" placeholder="<?php echo e(awtTrans('اكتب رقم الجوال')); ?>" required data-validation-required-message="<?php echo e(awtTrans('هذا الحقل مطلوب')); ?>" data-validation-number-message="<?php echo e(awtTrans('هذا الحقل يجب ان يكون رقما')); ?>" data-validation-minlength-message="<?php echo e(awtTrans('هذا الحقل يجب الا يقل عن ٩ ارقام')); ?>"> </div> </div> </div> <div class="col-md-12 col-12"> <div class="form-group"> <label for="first-name-column"><?php echo e(awtTrans('المدينة ')); ?></label> <div class="controls"> <input type="email" name="email" value="<?php echo e($row->city?$row->city->name:''); ?>" class="form-control" placeholder="<?php echo e(awtTrans('اكتب البريد الالكتروني')); ?>" required data-validation-required-message="<?php echo e(awtTrans('هذا الحقل مطلوب')); ?>" > </div> </div> </div> <div class="col-md-12 col-12"> <div class="form-group"> <label for="first-name-column"><?php echo e(awtTrans('الحالة ')); ?></label> <div class="controls"> <select name="block" class="select2 form-control" required data-validation-required-message="<?php echo e(awtTrans('هذا الحقل مطلوب')); ?>" > <option disabled value><?php echo e(awtTrans('اختر حالة التفعيل')); ?></option> <option <?php echo e($row->status == 'pending' ? 'selected' : ''); ?> value="pending"><?php echo e(awtTrans('فى انتظار التفعيل ')); ?></option> <option <?php echo e($row->status == 'active' ? 'selected' : ''); ?> value="active"><?php echo e(awtTrans(' نشط')); ?></option> <option <?php echo e($row->status == 'block' ? 'selected' : ''); ?> value="block"><?php echo e(awtTrans(' محظور')); ?></option> </select> </div> </div> </div> <div class="col-12 d-flex justify-content-center mt-3"> <a href="<?php echo e(url()->previous()); ?>" type="reset" class="btn btn-outline-warning mr-1 mb-1"><?php echo e(awtTrans(' رجوع ')); ?></a> </div> </div> </div> </form> </div> </div> </div> </div> </div> </section> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script> $('.store input').attr('disabled' , true) $('.store textarea').attr('disabled' , true) $('.store select').attr('disabled' , true) </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layout.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/satransi/public_html/resources/views/admin/clients/show.blade.php ENDPATH**/ ?>
Back to File Manager