fix: Update franchise template to use dynamic content for images and contact details

This commit is contained in:
2025-08-21 17:25:31 +05:45
parent c77828de8c
commit a57e00191a

View File

@@ -9,27 +9,20 @@
<div class="row sm:px-20 pr-30 first-row pt-20 pb-30">
<div class="col col-xl-6">
<div class="franchise-model">
<img src="assets/images/backgrounds_general/franchise-model.png" alt="">
<img src="{{ asset($page->image) }}" alt="">
</div>
</div>
<div class="col col-xl-6">
<div class="flex flex-col gap-10 pb-30 border-bottom">
<h2 class="md:text-20 text-50 text-sec">Franchise</h2>
<h2 class="md:text-20 text-50 text-sec">{{ $page->title }}</h2>
<h3 class="md:text-20 text-50 text-brand">Raffles EduCare</h3>
<p>Raffles Educare Associates Pvt. Ltd., established in 2005, is one of the best educational
consultancy
with a successful track record in the overseas education.Over the 15 years of excellence we have
97%
visa success rate along with highest student satisfaction, fulfilling the career dreams of many
students. Since the year of inception, we have been providing educational services of
international
standards and escalated to be one of the leading institutions.</p>
{!! $page->description !!}
</div>
<div class="flex flex-col gap-20 pt-20">
<h5 class="text-20 text-black">Have any questions?
Call/Whatsapp</h5>
<a class="text-26 text-black" href="tel:9801086208">+977 9801086208</a>
<a class="text-26 text-black" href="tel:9801086208">+977 {{ setting('mobile') }}</a>
</div>
</div>
@@ -176,9 +169,9 @@
</select>
<!-- <select name="" id="franchise-invest">
<option value="" selected hidden> Less than $10,000</option>
<option value=""></option>
</select> -->
<option value="" selected hidden> Less than $10,000</option>
<option value=""></option>
</select> -->
</div>
@@ -216,9 +209,9 @@
</select>
<!-- <select name="" id="franchise-timeframe">
<option value="" selected hidden> within 6 months</option>
<option value=""></option>
</select> -->
<option value="" selected hidden> within 6 months</option>
<option value=""></option>
</select> -->
</div>
@@ -250,15 +243,15 @@
<div class="flex justify-center gap-30 pt-30 flex-wrap">
<a class="flex items-center gap-10 border px-10 py-20" href="mailto:info@raffleseducare.com">
<i class="fa-solid fa-envelope text-brand text-18"></i>
<p class="text-white text-18 m-0 p-0">info@raffleseducare.com</p>
<p class="text-white text-18 m-0 p-0">{{ setting('email') }}</p>
</a>
<a class="flex items-center gap-10 border px-10 py-20" href="tel:info@+977-1234567890">
<i class="fa-solid fa-phone text-brand text-18"></i>
<p class="text-white text-18 m-0 p-0">+977-1234567890</p>
<p class="text-white text-18 m-0 p-0">+977-{{ setting('mobile') }}</p>
</a>
<div class="flex items-center gap-10 border px-10 py-20">
<i class="fa-solid fa-location-dot text-brand text-18"></i>
<p class="text-white text-18 m-0 p-0">Kathmandu, Nepal</p>
<p class="text-white text-18 m-0 p-0">{{ setting('location') }}</p>
</div>
</div>