cost calculator radio
This commit is contained in:
@@ -146,12 +146,12 @@
|
||||
<div class="row flex flex-wrap py-20">
|
||||
@foreach ($countries as $country)
|
||||
<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 }}">
|
||||
<div>
|
||||
|
||||
|
||||
<label class="text-20 text-ter p-0 m-0"
|
||||
for="{{ $country->id }}">{{ $country->title }}</label>
|
||||
<label class="text-20 text-ter p-0 m-0 flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs"
|
||||
for="{{ $country->id }}"> <input type="radio" name="country_id" value="{{ $country->id }}"
|
||||
id="{{ $country->id }}"> {{ $country->title }} </label>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
@@ -165,11 +165,11 @@
|
||||
<div class="row flex flex-wrap py-20">
|
||||
@foreach ($livingStatusOptions as $key => $status)
|
||||
<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 }}">
|
||||
<label class="text-20 text-ter p-0 m-0"
|
||||
for="{{ $status }}">{{ $status }}</label>
|
||||
<div class="">
|
||||
|
||||
<label class="text-20 text-ter p-0 m-0 flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs"
|
||||
for="{{ $status }}"> <input type="radio" name="status_type_id" value="{{ $key }}"
|
||||
id="{{ $status }}"> {{ $status }}</label>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
@@ -182,19 +182,19 @@
|
||||
|
||||
<div class="row flex flex-wrap py-20">
|
||||
<div class="col col-sm-4">
|
||||
<div class="flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs">
|
||||
<input name="services" type="radio" id="serviceYes">
|
||||
<div>
|
||||
|
||||
|
||||
<label class="text-20 text-ter p-0 m-0" for="serviceYes">Yes</label>
|
||||
<label class="text-20 text-ter p-0 m-0 flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs" for="serviceYes"> <input name="services" type="radio" id="serviceYes"> Yes</label>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-sm-4">
|
||||
<div class="flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs">
|
||||
<input name="services" type="radio" id="serviceNo">
|
||||
<div >
|
||||
|
||||
|
||||
<label class="text-20 text-ter p-0 m-0" for="serviceNo">No</label>
|
||||
<label class="text-20 text-ter p-0 m-0 flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs" for="serviceNo"> <input name="services" type="radio" id="serviceNo">No</label>
|
||||
|
||||
|
||||
</div>
|
||||
@@ -209,12 +209,12 @@
|
||||
<div class="row flex flex-wrap py-20">
|
||||
@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="{{ $level }}"
|
||||
value="">
|
||||
<label for="{{ $level }}">
|
||||
<label class="text-20 text-ter p-0 m-0"
|
||||
for="{{ $level }}">{{ $level }}</label>
|
||||
<div >
|
||||
|
||||
|
||||
<label class="text-20 text-ter p-0 m-0 flex items-center gap-10 px-10 py-12 bg-white rounded-30 tabs"
|
||||
for="{{ $level }}"> <input type="radio" name="" id="{{ $level }}"
|
||||
value=""> {{ $level }}</label>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
|
Reference in New Issue
Block a user