관리-도구
편집 파일: 5ff578ace85704096e8cd3db8d84d71f.php
<?php $__env->startSection('meta_title', $seo_setting['contact_page']['seo_title']); ?> <?php $__env->startSection('meta_description', $seo_setting['contact_page']['seo_description']); ?> <?php $__env->startSection('contents'); ?> <!-- breadcrumb-area --> <?php if (isset($component)) { $__componentOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c = $component; } ?> <?php if (isset($attributes)) { $__attributesOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c = $attributes; } ?> <?php $component = App\View\Components\Frontend\Breadcrumb::resolve(['title' => __('Contact Us'),'links' => [['url' => route('home'), 'text' => __('Home')], ['url' => '', 'text' => __('Contact Us')]]] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?> <?php $component->withName('frontend.breadcrumb'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Frontend\Breadcrumb::class))->getConstructor()): ?> <?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?> <?php endif; ?> <?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__attributesOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c)): ?> <?php $attributes = $__attributesOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c; ?> <?php unset($__attributesOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c); ?> <?php endif; ?> <?php if (isset($__componentOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c)): ?> <?php $component = $__componentOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c; ?> <?php unset($__componentOriginalcc52fffb9c918b8f3f4cf5faa6f3a53c); ?> <?php endif; ?> <!-- breadcrumb-area-end --> <!-- contact-area --> <section class="contact-area section-py-120"> <div class="container"> <div class="row"> <div class="col-lg-4"> <div class="contact-info-wrap"> <ul class="list-wrap"> <?php if($contact?->address): ?> <li> <div class="icon"> <img src="<?php echo e(asset('frontend/img/icons/map.svg')); ?>" alt="img" class="injectable"> </div> <div class="content"> <h4 class="title"><?php echo e(__('Address')); ?></h4> <p><?php echo e($contact?->address); ?></p> </div> </li> <?php endif; ?> <?php if($contact?->phone_one || $contact?->phone_two): ?> <li> <div class="icon"> <img src="<?php echo e(asset('frontend/img/icons/contact_phone.svg')); ?>" alt="img" class="injectable"> </div> <div class="content"> <h4 class="title"><?php echo e(__('Phone')); ?></h4> <a href="tel:<?php echo e($contact?->phone_one); ?>"><?php echo e($contact?->phone_one); ?></a> <a href="tel:<?php echo e($contact?->phone_two); ?>"><?php echo e($contact?->phone_two); ?></a> </div> </li> <?php endif; ?> <?php if($contact?->email_one || $contact?->email_two): ?> <li> <div class="icon"> <img src="<?php echo e(asset('frontend/img/icons/emial.svg')); ?>" alt="img" class="injectable"> </div> <div class="content"> <h4 class="title"><?php echo e(__('E-mail Address')); ?></h4> <a href="mailto:<?php echo e($contact?->email_one); ?>"><?php echo e($contact?->email_one); ?></a> <a href="mailto:<?php echo e($contact?->email_one); ?>"><?php echo e($contact?->email_two); ?></a> </div> </li> <?php endif; ?> </ul> </div> </div> <div class="<?php echo e(($contact?->address || $contact?->phone_one || $contact?->phone_two || $contact?->email_one || $contact?->email_two) ? 'col-lg-8' : 'col-lg-12'); ?>"> <div class="contact-form-wrap"> <h4 class="title"><?php echo e(__('Send Us Message')); ?></h4> <p><?php echo e(__('Your email address will not be published. Required fields are marked')); ?> *</p> <form id="contact-form" action="" method="POST"> <?php echo csrf_field(); ?> <div class="form-grp"> <textarea name="message" placeholder="<?php echo e(__('Comment')); ?> *" required></textarea> </div> <div class="row"> <div class="col-md-12"> <div class="form-grp"> <input name="subject" type="text" placeholder="<?php echo e(__('Subject')); ?> *" required> </div> </div> <div class="col-md-6"> <div class="form-grp"> <input name="name" type="text" placeholder="<?php echo e(__('Name')); ?> *" required> </div> </div> <div class="col-md-6"> <div class="form-grp"> <input name="email" type="email" placeholder="<?php echo e(__('E-mail')); ?> *" required> </div> </div> <!-- g-recaptcha --> <?php if(Cache::get('setting')->recaptcha_status === 'active'): ?> <div class="form-grp mt-3"> <div class="g-recaptcha" data-sitekey="<?php echo e(Cache::get('setting')->recaptcha_site_key); ?>"></div> </div> <?php endif; ?> </div> <button type="submit" class="btn btn-two arrow-btn"><?php echo e(__('Submit Now')); ?><img src="<?php echo e(asset('frontend/img/icons/right_arrow.svg')); ?>" alt="img" class="injectable"></button> </form> <p class="ajax-response mb-0"></p> </div> </div> </div> <!-- contact-map --> <?php if($contact?->map): ?> <div class="contact-map"> <iframe src="<?php echo e($contact?->map); ?>" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> </div> <?php endif; ?> <!-- contact-map-end --> </div> </section> <!-- contact-area-end --> <?php $__env->stopSection(); ?> <?php if(session('contactUs') && $setting->google_tagmanager_status == 'active' && $marketing_setting?->contact_page): ?> <?php $contactUs = session('contactUs'); session()->forget('contactUs'); ?> <?php $__env->startPush('scripts'); ?> <script> $(function() { dataLayer.push({ 'event': 'contactUs', 'contact_info': <?php echo json_encode($contactUs, 15, 512) ?> }); }); </script> <?php $__env->stopPush(); ?> <?php endif; ?> <?php echo $__env->make('frontend.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/inprosysltd/public_html/skill.inprosysltd.com/resources/views/frontend/pages/contact.blade.php ENDPATH**/ ?>