fix: Update image asset path in footer and correct radio button IDs in cost calculator

This commit is contained in:
2025-08-20 17:55:59 +05:45
parent 87ca5311dd
commit 8641ea590d
2 changed files with 5 additions and 5 deletions

View File

@@ -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>