⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
4e5e11ab82e34ee8bec58ad53b126b0c542a76cd.php
<?php $__env->startSection('styles'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('tab-title'); ?> <?php echo e($keywords['Appointment'] ?? 'Appointment'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('meta-description', !empty($userSeo) ? $userSeo->services_meta_description : ''); ?> <?php $__env->startSection('meta-keywords', !empty($userSeo) ? $userSeo->services_meta_keywords : ''); ?> <?php $__env->startSection('br-title'); ?> <?php echo e($keywords['Appointment'] ?? 'Appointment'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('br-link'); ?> <?php echo e($keywords['Appointment'] ?? 'Appointment'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <?php if($userBs->theme == 6 || $userBs->theme == 7 || $userBs->theme == 8): ?> <!--====== Breadcrumbs Start ======--> <section class="breadcrumbs-section"> <div class="container"> <div class="row align-items-center justify-content-center"> <div class="col-lg-10"> <div class="page-title"> <h1><?php echo e($keywords['Appointment'] ?? 'Appointment'); ?></h1> <ul class="breadcrumbs-link"> <li><a href="<?php echo e(route('front.user.detail.view', getParam())); ?>"><?php echo e($keywords['Home'] ?? 'Home'); ?></a> </li> <li class=""><?php echo e($keywords['Appointment'] ?? 'Appointment'); ?></li> </ul> </div> </div> </div> </div> </section> <!--====== Breadcrumbs End ======--> <?php endif; ?> <!--====== Start Vaughn-Features section ======--> <section class=" <?php if($userBs->theme == 6 || $userBs->theme == 7 || $userBs->theme == 8): ?> page-content-section section-gap <?php endif; ?> vaughn-features pt-5" id="service"> <div class="container mb-5"> <div class="row justify-content-center"> <div class="col-md-8 col-lg-7"> <form action="<?php echo e(route('front.user.appointment.booking.step1', getParam())); ?>" enctype="multipart/form-data" method="POST"> <?php echo csrf_field(); ?> <input type="hidden" name="category_id" value="<?php echo e($cat ?? null); ?>"> <div class="form-group"> <label for=""><?php echo e($keywords['Name'] ?? __('Name')); ?><span>**</span></label> <div class="row"> <div class="col-md-12"> <input class="form-control" type="text" name="name" value="<?php echo e(old('name')); ?>" value="<?php echo e(Auth::guard('customer')->user()->username ?? ''); ?>" placeholder="<?php echo e($keywords['Name'] ?? __('Name')); ?>"> </div> </div> <?php $__errorArgs = ['name']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <div class="form-group"> <label for=""><?php echo e($keywords['Email'] ?? __('Email')); ?><span>**</span></label> <div class="row"> <div class="col-md-12"> <input class="form-control" type="email" name="email" value="<?php echo e(old('email')); ?>" value="<?php echo e(Auth::guard('customer')->user()->email ?? ''); ?>" placeholder="<?php echo e($keywords['Email'] ?? __('Email')); ?>"> </div> </div> <?php $__errorArgs = ['email']; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php if(count($inputs) > 0): ?> <div id="sortable"> <?php $__currentLoopData = $inputs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $input): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($input->type == 1): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> </label> <div class="row"> <div class="col-md-12"> <input class="form-control" type="text" name="<?php echo e($input->name); ?>" value="<?php echo e(old("$input->name")); ?>" placeholder="<?php echo e($input->placeholder); ?>"> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php elseif($input->type == 2): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> </label> <div class="row"> <div class="col-md-12"> <select class="form-control" name="<?php echo e($input->name); ?>"> <option value="" selected disabled> <?php echo e($input->placeholder); ?> </option> <?php $__currentLoopData = $input->form_input_options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($option->name); ?>" <?php echo e(old("$input->name") == $option->name ? 'selected' : ''); ?>><?php echo e($option->name); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php elseif($input->type == 3): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> </label> <div class="row"> <div class="col-md-12"> <div class="d-flex gap-20 flex-wrap"> <?php $__currentLoopData = $input->form_input_options; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $option): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="custom-control custom-checkbox"> <input type="checkbox" id="customRadio<?php echo e($option->id); ?>" name="<?php echo e($input->name); ?>[]" value="<?php echo e($option->name); ?>" <?php echo e(is_array(old("$input->name")) && in_array($option->name, old("$input->name")) ? 'checked' : ''); ?> id="option<?php echo e($option->id); ?>" class="custom-control-input"> <label class="custom-control-label" for="customRadio<?php echo e($option->id); ?>"><?php echo e($option->name); ?> </label> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php elseif($input->type == 4): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> </label> <div class="row"> <div class="col-md-12"> <textarea class="form-control" name="<?php echo e($input->name); ?>" rows="5" cols="80" placeholder="<?php echo e($input->placeholder); ?>"><?php echo e(old("$input->name")); ?></textarea> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php elseif($input->type == 6): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> </label> <div class="row"> <div class="col-md-12"> <input type="text" class="form-control datepicker" name="<?php echo e($input->name); ?>" autocomplete="off" value="<?php echo e(old("$input->name")); ?>" placeholder="<?php echo e($input->placeholder); ?>"> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php elseif($input->type == 7): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> </label> <div class="row"> <div class="col-md-12"> <input type="text" class="form-control timepicker" name="<?php echo e($input->name); ?>" autocomplete="off" value="<?php echo e(old("$input->name")); ?>" placeholder="<?php echo e($input->placeholder); ?>"> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php elseif($input->type == 5): ?> <div class="form-group"> <label for=""><?php echo e($input->label); ?> <?php if($input->required == 1): ?> <span>**</span> <?php elseif($input->required == 0): ?> (<?php echo e(__('Optional')); ?>) <?php endif; ?> (<?php echo e(__('Allowed extensions:')); ?> <?php echo e($input->file_extensions); ?>) </label> <div class="row"> <input type="hidden" name="file_extensions" value="<?php echo e($input->file_extensions); ?>" name="allowed_extensions"> <div class="col-md-12"> <input name="<?php echo e($input->name); ?>" type="file"> </div> </div> <?php $__errorArgs = [$input->name]; $__bag = $errors->getBag($__errorArgs[1] ?? 'default'); if ($__bag->has($__errorArgs[0])) : if (isset($message)) { $__messageOriginal = $message; } $message = $__bag->first($__errorArgs[0]); ?> <p class="text-danger"><?php echo e($message); ?></p> <?php unset($message); if (isset($__messageOriginal)) { $message = $__messageOriginal; } endif; unset($__errorArgs, $__bag); ?> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <?php endif; ?> <div class="form-group pt-3"> <button class="<?php if($userBs->theme == 3 || $userBs->theme == 4 || $userBs->theme == 5 || $userBs->theme == 6 || $userBs->theme == 7 || $userBs->theme == 8): ?> main-btn <?php else: ?> template-btn <?php endif; ?> " type="submit"><?php echo e($keywords['Next'] ?? 'Next'); ?></button> </div> </form> </div> </div> </div> </section> <!--====== End Vaughn-Features section ======--> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <?php $__env->stopSection(); ?> <?php echo $__env->make("user.$folder.layout", \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/public_html/resources/views/user/profile-common/appointment-form.blade.php ENDPATH**/ ?>