Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
10 lines
352 B
PHP
10 lines
352 B
PHP
<select name="currency_id" id="currency_id" class="form-control" required>
|
|
@foreach ( $currencies as $currency )
|
|
@if ($currency->id == $selectionID)
|
|
<option value="{{ $currency->id }}" selected>{{ $currency->name }}</option>
|
|
@else
|
|
<option value="{{ $currency->id }}" >{{ $currency->name }}</option>
|
|
@endif
|
|
@endforeach
|
|
</select>
|