Se cargan las modificaciones para pasarela stripe
This commit is contained in:
@@ -49,6 +49,23 @@
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label>Niveles a impartir</label>
|
||||
|
||||
@foreach ($nivels as $nivel)
|
||||
<div class="form-check">
|
||||
<input type="checkbox" class="form-check-input cb"
|
||||
id="n-{{ $nivel->id }}"
|
||||
name="nivels[]" value="{{ $nivel->id }}"
|
||||
{{ $plane->nivel($nivel->id) ? 'checked' : '' }}
|
||||
>
|
||||
<label class="form-check-label" for="n-{{ $nivel->id }}">
|
||||
{{ $nivel->name }}
|
||||
</label>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="status">Seleccionar status</label>
|
||||
<select class="form-control" name="status" id="status" value="{{ $plantel->status }}">
|
||||
|
||||
Reference in New Issue
Block a user