fix: Update image asset path in footer and correct radio button IDs in cost calculator
This commit is contained in:
@@ -83,7 +83,7 @@
|
||||
<div class="container">
|
||||
|
||||
<div class="flex justify-center items-center">
|
||||
<img src="{{ setting('other_image') }}" alt="">
|
||||
<img src="{{ asset(setting('other_image')) }}" alt="">
|
||||
</div>
|
||||
|
||||
|
||||
|
@@ -148,7 +148,7 @@
|
||||
<div class="col col-sm-4">
|
||||
<div class="flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs">
|
||||
<input type="radio" name="country_id" value="{{ $country->id }}"
|
||||
id="{{ $country->id }}">
|
||||
id="country1">
|
||||
|
||||
<label class="text-20 text-ter p-0 m-0"
|
||||
for="country1">{{ $country->title }}</label>
|
||||
@@ -167,7 +167,7 @@
|
||||
<div class="col col-sm-6">
|
||||
<div class="flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs">
|
||||
<input type="radio" name="status_type_id" value="{{ $key }}"
|
||||
id="status_type_{{ $key }}">
|
||||
id="alone">
|
||||
<label class="text-20 text-ter p-0 m-0"
|
||||
for="alone">{{ $status }}</label>
|
||||
</div>
|
||||
@@ -210,8 +210,8 @@
|
||||
@foreach ($programLevelOptions as $level)
|
||||
<div class="col col-sm-4">
|
||||
<div class="flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs">
|
||||
<input type="radio" name="" id="" value="">
|
||||
<label for="program_level_id">
|
||||
<input type="radio" name="" id="bachelors" value="">
|
||||
<label for="bachelors">
|
||||
<label class="text-20 text-ter p-0 m-0"
|
||||
for="bachelors">{{ $level }}</label>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user