PATH:
home
/
rwabteecom
/
public_html
/
storage
/
framework
/
views
/
Editing: 7fcd538b83ef905155db4d0ec337ab46.php
<?php $__env->startSection('title'); ?> <?php echo e(__('auth.contact')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('page_css'); ?> <link href="<?php echo e(asset('assets/css/contact.css')); ?>" rel="stylesheet" type="text/css"> <?php $__env->stopSection(); ?> <?php $__env->startSection('page_name'); ?> <?php echo e(__('auth.contact')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="tab-content p-sm-4 p-3" id="v-pills-tabContent"> <div class="contact-tab tab-pane fade show active" id="v-pills-contact" role="tabpanel" aria-labelledby="v-pills-contact-tab"> <!-- start contact-info section --> <?php if((isset($managesection) && $managesection['contact_list']) || empty($managesection)): ?> <?php if($vcard->email || $vcard->phone || $vcard->alternative_email || $vcard->alternative_phone): ?> <section class="contact-info-section mt-3"> <div class="section-heading mb-40"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.vcard_11.contact_detail')); ?></h2> </div> <div class="row"> <?php if($vcard->email): ?> <div class="col-md-6 mb-sm-5 mb-4"> <div class="card flex-row p-sm-4 p-3 h-100"> <div class="tag d-flex justify-content-center align-items-center"> <span class="fs-6 text-white">01</span> </div> <div class="card-img-top d-flex justify-content-center align-items-center"> <i class="fa-solid fa-envelope"></i> </div> <div class="card-body p-0 ps-4"> <h5 class="card-title fs-18"><?php echo e(__('messages.vcard_11.my_email')); ?></h5> <a href="mailto:<?php echo e($vcard->email); ?>" class="fs-14 text-break"><?php echo e(strtoupper($vcard->email)); ?></a> <br> <?php if($vcard->alternative_email): ?> <a href="mailto:<?php echo e($vcard->alternative_email); ?>" class="fs-14 text-break"><?php echo e(strtoupper($vcard->alternative_email)); ?></a> <?php endif; ?> </div> </div> </div> <?php endif; ?> <?php if($vcard->phone || $vcard->alternative_phone): ?> <div class="col-md-6 mb-sm-5 mb-4"> <div class="card flex-row p-sm-4 p-3 h-100"> <div class="tag d-flex justify-content-center align-items-center"> <span class="fs-6 text-white"><?php echo e($vcard->phone == null ? '01' : '02'); ?></span> </div> <div class="card-img-top d-flex justify-content-center align-items-center"> <i class="fa-solid fa-phone"></i> </div> <div class="card-body p-0 ps-4"> <h5 class="card-title fs-18"><?php echo e(__('messages.vcard_11.my_phones')); ?></h5> <?php if($vcard->phone): ?> <a href="tel:+<?php echo e($vcard->region_code); ?><?php echo e($vcard->phone); ?>" class="fs-14" dir="ltr">+ <?php echo e($vcard->region_code); ?>-<?php echo e($vcard->phone); ?></a><br> <?php endif; ?> <?php if($vcard->alternative_phone): ?> <a href="tel:+<?php echo e($vcard->alternative_region_code); ?><?php echo e($vcard->alternative_phone); ?>" class="fs-14" dir="ltr">+ <?php echo e($vcard->alternative_region_code); ?> -<?php echo e($vcard->alternative_phone); ?></a> <?php endif; ?> </div> </div> </div> <?php endif; ?> </div> </section> <?php endif; ?> <?php endif; ?> <!-- end contact-info section --> <div class="row"> <?php if((isset($managesection) && $managesection['appointments']) || empty($managesection)): ?> <?php if(checkFeature('appointments') && $vcard->appointmentHours->count()): ?> <div class="col-md-6"> <!-- start make an appointment-section --> <section class="make-appointment-section mb-sm-5 mb-4"> <div class="section-heading mb-40"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.make_appointment')); ?></h2> </div> <form> <div class="form-group d-flex mb-4"> <label for="start" class="fs-14 text-white me-4"><?php echo e(__('messages.date')); ?>:</label> <input id="pickUpDate" class="w-100 fs-14 form-control text-white appoint-input flatpickr-input date" name="date" type="text" placeholder="<?php echo e(__('messages.form.pick_date')); ?>" style="text-align: center;border-radius: 12px;margin-top:-10px"> </div> <div class="form-group d-flex"> <label for="start" class="fs-14 text-white me-4"><?php echo e(__('messages.hour')); ?>:</label> <div class="row w-100"> <div id="slotData" class="row"> </div> <input type="hidden" id="templateId"> </div> </div> <div class="row"> <div class="col-12 text-center mt-4"> <button type="button" class="btn btn-primary appointmentAdd appoint-btn fs-14 d-none"> <?php echo e(__('messages.make_appointment')); ?> </button> </div> </div> </form> <?php echo $__env->make('vcardTemplates.vcard11.appointment', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </section> <!-- end make an appointment-section --> </div> <?php endif; ?> <?php endif; ?> <div class="col-md-6"> <!-- start bussiness hours-section --> <?php if((isset($managesection) && $managesection['business_hours']) || empty($managesection)): ?> <?php if($vcard->businessHours->count()): ?> <section class="bussinesss-hours-section mb-4"> <div class="section-heading mb-40"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.business.business_hours')); ?></h2> </div> <div class="hours px-4 py-3"> <?php $__currentLoopData = $vcard->businessHours; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $day): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="d-flex justify-content-between mb-2"> <span class="fs-14 text-white"><?php echo e(strtoupper(__('messages.business.' . \App\Models\BusinessHour::DAY_OF_WEEK[$day->day_of_week])) . ' :'); ?></span> <span class="fs-14 text-white"><?php echo e($day->start_time . ' - ' . $day->end_time); ?></span> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </section> <!-- end bussiness hours-section --> <?php endif; ?> <?php endif; ?> </div> </div> <?php $currentSubs = $vcard ->subscriptions() ->where('status', \App\Models\Subscription::ACTIVE) ->latest() ->first(); ?> <?php if($currentSubs && $currentSubs->plan->planFeature->enquiry_form && $vcard->enable_enquiry_form): ?> <section class="contact-section mb-sm-5 mb-4"> <div class="section-heading mb-40"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.contact_us.inquries')); ?></h2> </div> <div class="row"> <?php if((isset($managesection) && $managesection['map']) || empty($managesection)): ?> <div class="col-md-6 mb-md-0 mb-4"> <?php if($vcard->location_type == 0 && ($vcard->location_url && isset($url[5]))): ?> <div class="m-2 mt-0"> <iframe width="100%" height="300px" src='https://maps.google.de/maps?q=<?php echo e($url[5]); ?>/&output=embed' frameborder="0" scrolling="no" marginheight="0" marginwidth="0" style="border-radius: 10px;"></iframe> </div> <?php endif; ?> <?php if($vcard->location_type == 1 && !empty($vcard->location_embed_tag)): ?> <div class="m-2 mt-0"> <div class="embed-responsive embed-responsive-16by9 rounded overflow-hidden" style="height: 300px;"> <?php echo $vcard->location_embed_tag ?? ''; ?> </div> </div> <?php endif; ?> </div> <?php endif; ?> <div class="col-md-6 col-12"> <form id="enquiryForm" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div id="enquiryError" class="alert alert-danger d-none"></div> <div class="form-group mb-4"> <div class="input-icon"> <i class="fas fa-user-plus"></i> </div> <input type="name" class="form-control fs-12 text-white" id="name" placeholder="<?php echo e(__('messages.form.your_name')); ?> *" required name="name" /> </div> <div class="form-group mb-4"> <div class="input-icon"> <i class="fas fa-envelope"></i> </div> <input type="email" class="form-control fs-12 text-white" id="email" placeholder="<?php echo e(__('messages.form.your_email')); ?> *" required name="email" /> </div> <div class="form-group mb-4"> <div class="input-icon"> <i class="fas fa-phone"></i> </div> <input type="text" class="form-control fs-12 text-white" id="phone" placeholder="<?php echo e(__('messages.form.enter_phone')); ?>" name="phone" /> </div> <div class="form-group mb-4 text-area"> <div class="input-icon"> <i class="fas fa-message"></i> </div> <textarea name="message" id="message" class="text-area form-control fs-12 text-white h-auto" rows="5" placeholder="<?php echo e(__('messages.user.your_message')); ?> *"></textarea> </div> <?php if(isset($inquiry) && $inquiry == 1): ?> <div class="mb-3 mt-3"> <div class="wrapper-file-input"> <div class="input-box" id="fileInputTrigger"> <h4> <i class="fa-solid fa-upload ms-2 mb-1"></i><?php echo e(__('messages.choose_file')); ?> </h4> <input type="file" id="attachment" name="attachment" hidden multiple /> </div> <small><?php echo e(__('messages.file_supported')); ?></small> </div> <div class="wrapper-file-section"> <div class="selected-files" id="selectedFilesSection" style="display: none;"> <h5><?php echo e(__('messages.selected_files')); ?></h5> <ul class="file-list" id="fileList"></ul> </div> </div> </div> <?php endif; ?> <?php if(!empty($vcard->privacy_policy) || !empty($vcard->term_condition)): ?> <div class="form-group mb-4"> <input type="checkbox" name="terms_condition" class="form-check-input terms-condition" id="termConditionCheckbox" placeholder> <label class="form-check-label" for="privacyPolicyCheckbox" style="display: inline;font-size:12px"> <span class="text-white"><?php echo e(__('messages.vcard.agree_to_our')); ?></span> <a href="<?php echo e($vcard11PrivacyPolicy); ?>" target="_blank" class="text-decoration-none link-info fs-6" style="font-size:12px !important"><?php echo __('messages.vcard.term_and_condition'); ?></a> <span class="text-white">&</span> <a href="<?php echo e($vcard11PrivacyPolicy); ?>" target="_blank" class="text-decoration-none link-info fs-6" style="font-size:12px !important"><?php echo e(__('messages.vcard.privacy_policy')); ?></a> </label> </div> <?php endif; ?> <button type="submit" class="contact-btn btn btn-primary fs-14"><?php echo e(__('messages.contact_us.send_message')); ?></button> </form> </div> </div> </section> <?php endif; ?> <!-- start QR-code section --> <?php if(isset($vcard['show_qr_code']) && $vcard['show_qr_code'] == 1): ?> <section class="qr-code-section"> <div class="section-heading mb-40"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.vcard.qr_code')); ?></h2> </div> <div class="d-flex flex-wrap justify-content-center"> <div class="image-box me-sm-5"> <div class="image mb-4 text-center"> <img src="<?php echo e($vcard->profile_url); ?>" class="w-100 h-100 object-fit-cover"> </div> <?php if($vcard->enable_download_qr_code): ?> <div class="row mb-sm-0 mb-4"> <div class="col-12 text-center"> <a class="btn btn-primary w-auto qr-code-btn" id="qr-code-btn" download="qr_code.png"><?php echo e(__('messages.vcard.download_my_qr_code')); ?></a> </div> </div> <?php endif; ?> </div> <div class="qr-code qr-code-image" id="qr-code-eleven"> <?php if(isset($customQrCode['applySetting']) && $customQrCode['applySetting'] == 1): ?> <?php echo QrCode::color( $qrcodeColor['qrcodeColor']->red(), $qrcodeColor['qrcodeColor']->green(), $qrcodeColor['qrcodeColor']->blue(), )->backgroundColor( $qrcodeColor['background_color']->red(), $qrcodeColor['background_color']->green(), $qrcodeColor['background_color']->blue(), )->style($customQrCode['style'])->eye($customQrCode['eye_style'])->size(130)->format('svg')->generate(Request::url()); ?> <?php else: ?> <?php echo QrCode::size(130)->format('svg')->generate(Request::url()); ?> <?php endif; ?> </div> </div> </section> </div> <?php endif; ?> <!-- end QR-code section --> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('vcardTemplates.vcard11.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/rwabteecom/public_html/resources/views/vcardTemplates/vcard11/contact.blade.php ENDPATH**/ ?>
SAVE
CANCEL