PATH:
home
/
rwabteecom
/
.trash
/
Editing: b8fb56a3ae89a3409bcb681cc1678500.php
<?php $__env->startSection('title'); ?> <?php echo e(__('auth.home')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('page_css'); ?> <link href="<?php echo e(asset('assets/css/home.css')); ?>" rel="stylesheet" type="text/css"> <?php $__env->stopSection(); ?> <?php $__env->startSection('page_name'); ?> <?php echo e(__('auth.about')); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="tab-content p-sm-4 p-3" id="v-pills-tabContent"> <div class="home-tab tab-pane fade show active" id="v-pills-home" role="tabpanel" aria-labelledby="v-pills-home-tab"> <div class="hero-about"> <div class="row"> <div class=" col-xl-6"> <p class="text-white mb-1"><?php echo e($vcard->occupation); ?></p> <p class="text-white mb-1"><?php echo e($vcard->job_title); ?></p> <p class="small-title text-white"><?php echo e(ucwords($vcard->company)); ?></p> <h2 class="text-white fs-34 fw-5 mb-4 d-inline-block"> <?php echo e(strtoupper($vcard->first_name.' '.$vcard->last_name)); ?> <?php if($vcard->is_verified): ?> <i class="verification-icon bi-patch-check-fill"></i> <?php endif; ?> </h2> <p class="text-white fs-20 mb-2"><?php echo e(__('messages.common.description')); ?></p> <div class="text-white profile-description fs-14 mb-3 fw-normal "> <p class="profile-description"> <?php echo $vcard->description; ?></p> </div> </div> <?php if((isset($managesection) && $managesection['contact_list']) || empty($managesection)): ?> <?php if(isset($vcard->first_name)): ?> <div class="col-xl-6 ps-3"> <div class="desc"> <div class=" d-flex mb-2 "> <div class="icon me-4"> <i class="fa-solid fa-user"></i> </div> <div class=""> <span><?php echo e(__('messages.common.name')); ?> :</span> <a class="ps-2 fs-14"><?php echo e(strtoupper($vcard->first_name.' '.$vcard->last_name)); ?></a> </div> </div> <?php if($vcard->location): ?> <div class=" d-flex mb-2"> <div class="icon me-4"> <i class="fa-sharp fa-solid fa-location-dot"></i> </div> <div class=""> <span><?php echo e(__('messages.user.location')); ?> :</span> <a class="ps-2 fs-14"><?php echo ucwords($vcard->location); ?></a> </div> </div> <?php endif; ?> <?php if($vcard->dob): ?> <div class=" d-flex mb-2"> <div class="icon me-4"> <i class="fa-solid fa-star"></i> </div> <div class=""> <span><?php echo e(__('messages.vcard.dob')); ?> :</span> <a class="ps-2 fs-14"><?php echo e($vcard->dob); ?></a> </div> </div> <?php endif; ?> <?php if($vcard->phone || $vcard->alternative_phone): ?> <div class=" d-flex mb-2"> <div class="icon me-4"> <i class="fa-solid fa-phone"></i> </div> <div class="d-flex "> <span><?php echo e(__('auth.contact')); ?> :</span> <div class="d-flex flex-wrap"> <?php if($vcard->phone): ?> <a href="tel:+<?php echo e($vcard->region_code); ?><?php echo e($vcard->phone); ?>" class="ps-2 fs-14" dir="ltr">+ <?php echo e($vcard->region_code); ?> <?php echo e($vcard->phone); ?></a> <?php endif; ?> <?php if($vcard->alternative_phone): ?> <a href="tel:+<?php echo e($vcard->alternative_region_code); ?><?php echo e($vcard->alternative_phone); ?>" class="ps-2 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> </div> <?php endif; ?> <?php endif; ?> </div> </div> <!-- start services section --> <?php if((isset($managesection) && $managesection['services']) || empty($managesection)): ?> <?php if(checkFeature('services') && $vcard->services->count()): ?> <section class="services-section pt-30 mt-5"> <div class="section-heading mb-40"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.services')); ?></h2> </div> <?php $serviceCount = 1 ?> <?php if($vcard->services_slider_view): ?> <div class="row services-slider-view"> <?php $__currentLoopData = $vcard->services; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $service): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div> <div class="service-card card my-1 h-100"> <div class="tag d-flex justify-content-center align-items-center"> <span class="fs-6 text-white"><?php echo e($serviceCount++); ?></span> </div> <a href="<?php echo e($service->service_url ?? 'javascript:void(0)'); ?>" class="text-decoration-none img <?php echo e($service->service_url ? 'pe-auto' : 'pe-none'); ?>" target="<?php echo e($service->service_url ? '_blank' : ''); ?>"> <img src="<?php echo e($service->service_icon); ?>" class="card-img-top service-new-image" alt="<?php echo e($service->name); ?>" loading="lazy"> </a> <div class=""> <h5 class="card-title title-text"><?php echo e(ucwords($service->name)); ?></h5> <p class="card-text description-text <?php echo e(\Illuminate\Support\Str::length($service->description) > 170 ? 'more' : ''); ?>"> <?php echo \Illuminate\Support\Str::limit($service->description, 170, '...'); ?></p> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <?php else: ?> <div class="row"> <?php $__currentLoopData = $vcard->services; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $service): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-md-6 mb-sm-5 mb-4"> <div class="card flex-sm-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($serviceCount++); ?></span> </div> <div class="card-img-top"> <img src="<?php echo e($service->service_icon); ?>" height="70" width="70" class="object-fit-cover custom-border-radius"> </div> <div class="card-body p-0 ps-sm-4 pt-sm-0 pt-3"> <a class="text-decoration-none text-white" href="<?php echo e($service->service_url ?? '#'); ?>" target="_blank"> <h5 class="card-title fs-18"><?php echo e($service->name); ?></h5> <p class="card-text fs-14 mb-0 <?php echo e(\Illuminate\Support\Str::length($service->description) > 170 ? 'more' : ''); ?>"> <?php echo \Illuminate\Support\Str::limit($service->description, 170, '...'); ?> </p> </a> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <?php endif; ?> </section> <?php endif; ?> <?php endif; ?> <!-- start product section --> <?php if(checkFeature('products') && $vcard->products->count()): ?> <?php if((isset($managesection) && $managesection['products']) || empty($managesection)): ?> <section class="services-section pt-30"> <div class="section-heading mb-5"> <h2 class="fs-22 text-white ps-4"><?php echo e(__('messages.feature.products')); ?></h2> <div class="text-end "> <a class="fs-6 ps-4 text-decoration-underline text-light" href="<?php echo e(route('showProducts',['id'=>$vcard->id,'alias'=>$vcard->url_alias])); ?>"><?php echo e(__('messages.analytics.view_more')); ?></a> </div> </div> <?php $ProductCount = 1 ?> <div class="row"> <?php $__currentLoopData = $vcardProducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-md-6 mb-sm-5 mb-4"> <a <?php if($product->product_url): ?> href="<?php echo e($product->product_url); ?>" <?php endif; ?>> <div class="card flex-sm-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($ProductCount++); ?></span> </div> <div class="card-img-top"> <a <?php if($product->product_url): ?> href="<?php echo e($product->product_url); ?>" target="_blank" <?php endif; ?>> <div class="card-img-top"> <img src="<?php echo e($product->product_icon); ?>" class="w-100 h-100 object-fit-cover custom-border-radius"> </div> </div> <div class="card-body p-0 ps-sm-4 pt-sm-0 pt-3"> <div class="d-flex justify-content-between"> <h5 class="card-title fs-18"><?php echo e($product->name); ?></h5> </div> <?php if($product->currency_id && $product->price): ?> <p class=" fs-14 pb-4 mb-0"> <?php echo e($product->currency->currency_icon); ?><?php echo e(getSuperAdminSettingValue('hide_decimal_values') == 1 ? number_format($product->price, 0) : number_format($product->price, 2)); ?> </p> <?php elseif($product->price): ?> <p class=" fs-14 pb-4 mb-0"><?php echo e(getUserCurrencyIcon($vcard->user->id) .' '. $product->price); ?></p> <?php endif; ?> <div class="pb-3"> <p class="card-text fs-14 pb-4 mb-0"> <?php echo $product->description; ?> </p> </div> </div> </div> </a> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </section> <?php endif; ?> <?php endif; ?> <!-- end services section --> <!-- start testimonials-section --> <?php if((isset($managesection) && $managesection['testimonials']) || empty($managesection)): ?> <?php if(checkFeature('testimonials') && $vcard->testimonials->count()): ?> <section class="testimonials-section position-relative mt-4 "> <?php $testimonialCount = 1; $style = 'style'; $marginBottom = 'margin-bottom'; ?> <div class="section-heading "> <h2 class="fs-22 text-white ps-4 " <?php echo e($style); ?>="<?php echo e($marginBottom); ?>: -10px;" ><?php echo e(__('messages.feature.testimonials')); ?></h2> </div> <div class="slick-slider"> <?php $__currentLoopData = $vcard->testimonials; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $testimonial): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col element element-1 <?php if($vcard->testimonials->count()==1): ?> custom-margin-testimonial <?php endif; ?> h-100 m-0 mt-3 "> <a class="fs-14 ps-3"></a> <div class="card testimonial-2card-custom mb-3 me-4 flex-sm-row p-4 h-100"> <div class="tag d-flex justify-content-center align-items-center"> <span class="fs-6 text-white"><?php echo e($testimonialCount++); ?></span> </div> <div class="card-img-top"> <img src="<?php echo e($testimonial->image_url); ?>" class="w-100 h-100 object-fit-cover"> </div> <div class="card-body p-0 ps-sm-4 pt-sm-0 pt-3"> <h5 class="card-title fs-18"><?php echo e(ucwords( $testimonial->name)); ?></h5> <p class="card-text fs-14 <?php echo e(\Illuminate\Support\Str::length($testimonial->description) > 80 ? 'more' : ''); ?> mb-0"> "<?php echo $testimonial->description; ?> " </p> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </section> <?php endif; ?> <?php endif; ?> <!-- end testimonials-section --> <!--insta feed--> <?php if((isset($managesection) && $managesection['insta_embed']) || empty($managesection)): ?> <?php if(checkFeature('insta_embed') && $vcard->instagramEmbed->count()): ?> <div class="section-heading mb-5"> <?php $testimonialCount = 1; $style = 'style'; $marginBottom = 'margin-bottom'; ?> <h2 class="fs-22 text-white ps-4" <?php echo e($style); ?>="<?php echo e($marginBottom); ?>: -10px;" ><?php echo e(__('messages.feature.insta_embed')); ?></h2> </div> <nav> <div class="row insta-toggle"> <div class="nav nav-tabs px-0 border-0" id="nav-tab" role="tablist"> <button class="d-flex align-items-center justify-content-center py-2 border-0 active postbtn instagram-btn text-center" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true"> <svg aria-label="Posts" class="svg-post-icon x1lliihq x1n2onr6 x173jzuc" fill="currentColor" height="24" role="img" viewBox="0 0 24 24" width="24"> <title>Posts</title> <rect fill="none" height="18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="18" x="3" y="3"></rect> <line fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" x1="9.015" x2="9.015" y1="3" y2="21"></line> <line fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" x1="14.985" x2="14.985" y1="3" y2="21"></line> <line fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" x1="21" x2="3" y1="9.015" y2="9.015"></line> <line fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" x1="21" x2="3" y1="14.985" y2="14.985"></line> </svg> </button> <button class="d-flex align-items-center justify-content-center py-2 border-0 instagram-btn reelsbtn text-center" id="nav-profile-tab" data-bs-toggle="tab" data-bs-target="#nav-profile" type="button" role="tab" aria-controls="nav-profile" aria-selected="false"> <svg class="svg-reels-icon" viewBox="0 0 48 48" width="27" height="27"> <path d="m33,6H15c-.16,0-.31,0-.46.01-.7401.04-1.46.17-2.14.38-3.7,1.11-6.4,4.55-6.4,8.61v18c0,4.96,4.04,9,9,9h18c4.96,0,9-4.04,9-9V15c0-4.96-4.04-9-9-9Zm7,27c0,3.86-3.14,7-7,7H15c-3.86,0-7-3.14-7-7V15c0-3.37,2.39-6.19,5.57-6.85.46-.1.94-.15,1.43-.15h18c3.86,0,7,3.14,7,7v18Z" fill="currentColor" class="color000 svgShape not-active-svg"></path> <path d="M21 16h-2.2l-.66-1-4.57-6.85-.76-1.15h2.39l.66 1 4.67 7 .3.45c.11.17.17.36.17.55zM34 16h-2.2l-.66-1-4.67-7-.66-1h2.39l.66 1 4.67 7 .3.45c.11.17.17.36.17.55z" fill="currentColor" class="color000 svgShape not-active-svg"></path> <rect width="36" height="3" x="6" y="15" fill="currentColor" class="color000 svgShape"></rect><path d="m20,35c-.1753,0-.3506-.0459-.5073-.1382-.3052-.1797-.4927-.5073-.4927-.8618v-10c0-.3545.1875-.6821.4927-.8618.3066-.1797.6831-.1846.9932-.0122l9,5c.3174.1763.5142.5107.5142.874s-.1968.6978-.5142.874l-9,5c-.1514.084-.3188.126-.4858.126Zm1-9.3003v6.6006l5.9409-3.3003-5.9409-3.3003Z" fill="currentColor" class="color000 svgShape not-active-svg"></path> <path d="m6,33c0,4.96,4.04,9,9,9h18c4.96,0,9-4.04,9-9v-16H6v16Zm13-9c0-.35.19-.68.49-.86.31-.18.69-.19,1-.01l9,5c.31.17.51.51.51.87s-.2.7-.51.87l-9,5c-.16.09-.3199.13-.49.13-.18,0-.35-.05-.51-.14-.3-.18-.49-.51-.49-.86v-10Zm23-9c0-4.96-4.04-9-9-9h-5.47l6,9h8.47Zm-10.86,0l-6.01-9h-10.13c-.16,0-.31,0-.46.01l5.99,8.99h10.61ZM12.4,6.39c-3.7,1.11-6.4,4.55-6.4,8.61h12.14l-5.74-8.61Z" fill="currentColor" class="color000 svgShape active-svg"></path> </svg> </button> </div> </div> </nav> <div id="postContent"> <div class="row overflow-hidden m-0 mt-5"> <!-- "Post" content --> <?php $__currentLoopData = $vcard->InstagramEmbed; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $InstagramEmbed): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($InstagramEmbed->type == 0): ?> <div class="col-12 col-sm-6 instagramEmbed insta-feed-iframe"> <?php echo $InstagramEmbed->embedtag; ?> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> <div id="reelContent"> <div class="row overflow-hidden mt-5"> <!-- "Reel" content --> <?php $__currentLoopData = $vcard->InstagramEmbed; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $InstagramEmbed): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($InstagramEmbed->type == 1): ?> <div class="col-12 col-sm-6 mt-2 instagramEmbed insta-feed-iframe"> <?php echo $InstagramEmbed->embedtag; ?> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> <?php endif; ?> <?php endif; ?> <!--insta feed end--> <?php if((isset($managesection) && $managesection['iframe']) || empty($managesection)): ?> <?php if(checkFeature('iframes') && $vcard->iframes->count()): ?> <div class="vcard-one__blog"> <div class="section-heading"> <h2 class="fs-22 text-white ps-4 mt-5"><?php echo e(__('messages.vcard.iframe')); ?></h2> </div> <div class="container iframe-section"> <div class="iframe-slider"> <?php $__currentLoopData = $vcard->iframes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $iframe): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-12 mb-2 col"> <div class="card p-sm-2 border-0 w-70 d-flex align-items-center m-3"> <iframe src="<?php echo e($iframe->url); ?>" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen width="100%" height="300"> </iframe> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> <?php endif; ?> <?php endif; ?> <!-- start client-section --> <?php if((isset($managesection) && $managesection['galleries']) || empty($managesection)): ?> <?php if(checkFeature('gallery') && $vcard->gallery->count()): ?> <section class="client-section"> <div class="section-heading mb-4"> <h2 class="fs-22 text-white ps-4 mt-5"><?php echo e(__('messages.feature.gallery')); ?></h2> </div> <div class="row"> <?php $__currentLoopData = $vcard->gallery; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $file): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $infoPath = pathinfo(public_path($file->gallery_image)); $extension = $infoPath['extension']; ?> <div class="col-md-3 col-6 mt-3"> <div class="client-box w-100 h-100 "> <div class="client-img"> <?php if($file->type == App\Models\Gallery::TYPE_IMAGE): ?> <a href="<?php echo e($file->gallery_image); ?>" data-lightbox="gallery-images"><img src="<?php echo e($file->gallery_image); ?>" class="w-100 h-100 object-fit-cover rounded"></a> <?php elseif($file->type == App\Models\Gallery::TYPE_FILE): ?> <a id="file_url" href="<?php echo e($file->gallery_image); ?>" class="gallery-link gallery-file-link" target="_blank"> <?php if($extension=='pdf'): ?> <img src="<?php echo e(asset('assets/images/pdf-icon.png')); ?>" class="w-100 h-100 object-fit-cover rounded"> <?php endif; ?> <?php if($extension=='xls'): ?> <img src="<?php echo e(asset('assets/images/xls.png')); ?>" class="w-100 h-100 object-fit-cover rounded"> <?php endif; ?> <?php if($extension=='csv'): ?> <img src="<?php echo e(asset('assets/images/csv-file.png')); ?>" class="w-100 h-100 object-fit-cover rounded"> <?php endif; ?> <?php if($extension=='xlsx'): ?> <img src="<?php echo e(asset('assets/images/xlsx.png')); ?>" class="w-100 h-100 object-fit-cover rounded"> <?php endif; ?> </a> <?php elseif($file->type == App\Models\Gallery::TYPE_VIDEO): ?> <div class="video-container d-flex align-items-center"> <video width="100%" controls> <source src="<?php echo e($file->gallery_image); ?>"> </video> </div> <?php elseif($file->type == App\Models\Gallery::TYPE_AUDIO): ?> <div class="audio-container"> <img src="<?php echo e(asset('assets/img/music.jpeg')); ?>" alt="Album Cover" class="audio-image" height="170"> <audio controls src="<?php echo e($file->gallery_image); ?>" class="mt-2"> Your browser does not support the <code>audio</code> element. </audio> </div> <?php else: ?> <iframe src="https://www.youtube.com/embed/<?php echo e(YoutubeID($file->link)); ?>" class="w-100 h-100 object-fit-cover"> </iframe> <?php endif; ?> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </section> <?php endif; ?> <?php endif; ?> <div class="d-flex justify-content-center mt-5 text-white"> <?php if(checkFeature('advanced')): ?> <?php if(checkFeature('advanced')->hide_branding && $vcard->branding == 0): ?> <?php if($vcard->made_by): ?> <a <?php if(!is_null($vcard->made_by_url)): ?> href="<?php echo e($vcard->made_by_url); ?>" <?php endif; ?> class="text-center text-decoration-none text-white" target="_blank"> <small><?php echo e(__('messages.made_by')); ?> <?php echo e($vcard->made_by); ?></small></a> <?php endif; ?> <?php else: ?> <div class="text-center"> <small><?php echo e(__('messages.made_by')); ?> <?php echo e($setting['app_name']); ?></small> </div> <?php endif; ?> <?php endif; ?> </div> <!-- Modal --> <?php if((isset($managesection) && $managesection['news_latter_popup']) || empty($managesection)): ?> <div class="modal fade" id="newsLatterModal" tabindex="-1" aria-labelledby="newsLatterModalLabel" aria-hidden="true"> <div class="modal-dialog news-modal modal-dialog-centered"> <div class="modal-content animate-bottom" id="newsLatter-content"> <div class="newsmodal-header px-0 position-relative"> <button type="button" class="btn-close p-1 position-absolute end-0" data-bs-dismiss="modal" aria-label="Close" id="closeNewsLatterModal"></button> </div> <div class="modal-body"> <h3 class="content text-start mb-2"><?php echo e(__('messages.vcard.subscribe_newslatter')); ?></h3> <p class="modal-desc text-start"><?php echo e(__('messages.vcard.update_directly')); ?></p> <div class="mb-1 mt-3 d-flex gap-1 justify-content-center align-items-center email-input"> <div class="d-flex align-items-center gap-1 w-100"> <input type="email" class="form-control email-input w-100" placeholder="<?php echo e(__('messages.form.enter_your_email')); ?>" aria-label="Email" aria-describedby="button-addon2"> <button class="btn btn-outline-secondary ms-1" type="button" id="email-send"><?php echo e(__('messages.subscribe')); ?></button> </div> </div> </div> </div> </div> </div> <?php endif; ?> <?php $__env->stopSection(); ?> <script> listenClick('.postbtn', function () { $('#postContent').addClass('d-block'); $('#postContent').removeClass('d-none'); $('#reelContent').addClass('d-none'); $('#reelContent').removeClass('d-block'); }); listenClick('.reelsbtn', function () { $('#postContent').addClass('d-none'); $('#postContent').removeClass('d-block'); $('#reelContent').removeClass('d-none'); $('#reelContent').addClass('d-block'); }); </script> <?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/index.blade.php ENDPATH**/ ?>
SAVE
CANCEL