This commit is contained in:
2025-08-20 17:59:45 +05:45
parent 8641ea590d
commit dce861fe89

View File

@@ -148,10 +148,10 @@
<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="country1">
id="{{ $country->id }}">
<label class="text-20 text-ter p-0 m-0"
for="country1">{{ $country->title }}</label>
for="{{ $country->id }}">{{ $country->title }}</label>
</div>
</div>
@endforeach
@@ -167,9 +167,9 @@
<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="alone">
id="{{ $status }}">
<label class="text-20 text-ter p-0 m-0"
for="alone">{{ $status }}</label>
for="{{ $status }}">{{ $status }}</label>
</div>
</div>
@endforeach
@@ -210,10 +210,11 @@
@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="bachelors" value="">
<label for="bachelors">
<input type="radio" name="" id="{{ $level }}"
value="">
<label for="{{ $level }}">
<label class="text-20 text-ter p-0 m-0"
for="bachelors">{{ $level }}</label>
for="{{ $level }}">{{ $level }}</label>
</div>
</div>
@endforeach