gruene-seele/resources/views/user/wizard/_change.blade.php
2021-01-22 15:54:51 +01:00

39 lines
No EOL
1.6 KiB
PHP

<!-- change -->
<div class="card mb-4">
<div class="card-body">
<p><strong>Wähle Deine Mitgildschaft:</strong></p>
<div class="table-responsive">
<table class="table table- m-0">
<tbody class="switchers-stacked">
@foreach($user_levels as $user_level)
<tr>
<td class="text-center align-middle px-0">
<label class="switcher switcher-secondary">
<input type="radio" class="switcher-input" value="{{$user_level->id}}" name="switchers-package-wizard" required>
<span class="switcher-indicator">
<span class="switcher-yes"></span>
<span class="switcher-no"></span>
</span>
<span class="switcher-label"></span>
</label>
</td>
<td class="p-4">
<div class="media align-items-center">
<div class="media-body">
<h5 class="d-block text-dark">{{$user_level->name}}</h5>
{!! \App\Services\HTMLHelper::setContentReadMore($user_level->getLang('content')) !!}
</div>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
<!-- / change -->