mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 05:44:32 -04:00
Merge pull request #6737 from beganovich/v5-705
Update default gateway preferences
This commit is contained in:
commit
3c7d3ad1bf
@ -73,6 +73,7 @@
|
|||||||
|
|
||||||
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.state')])
|
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.state')])
|
||||||
<select class="input w-full" id="billing-region">
|
<select class="input w-full" id="billing-region">
|
||||||
|
<option disabled selected></option>
|
||||||
@foreach(\App\DataProviders\USStates::get() as $code => $state)
|
@foreach(\App\DataProviders\USStates::get() as $code => $state)
|
||||||
<option value="{{ $code }}">{{ $state }} ({{ $code }})</option>
|
<option value="{{ $code }}">{{ $state }} ({{ $code }})</option>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
@ -43,7 +43,8 @@
|
|||||||
@endcomponent
|
@endcomponent
|
||||||
|
|
||||||
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.country')])
|
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.country')])
|
||||||
<select name="countries" id="country" class="form-select input w-full" required>
|
<select name="countries" id="country" class="form-select input w-full">
|
||||||
|
<option disabled selected></option>
|
||||||
@foreach($countries as $country)
|
@foreach($countries as $country)
|
||||||
<option value="{{ $country->iso_3166_2 }}">{{ $country->iso_3166_2 }} ({{ $country->name }})</option>
|
<option value="{{ $country->iso_3166_2 }}">{{ $country->iso_3166_2 }} ({{ $country->name }})</option>
|
||||||
@endforeach
|
@endforeach
|
||||||
@ -52,6 +53,7 @@
|
|||||||
|
|
||||||
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.currency')])
|
@component('portal.ninja2020.components.general.card-element', ['title' => ctrans('texts.currency')])
|
||||||
<select name="currencies" id="currency" class="form-select input w-full">
|
<select name="currencies" id="currency" class="form-select input w-full">
|
||||||
|
<option disabled selected></option>
|
||||||
@foreach($currencies as $currency)
|
@foreach($currencies as $currency)
|
||||||
<option value="{{ $currency->code }}">{{ $currency->code }} ({{ $currency->name }})</option>
|
<option value="{{ $currency->code }}">{{ $currency->code }} ({{ $currency->name }})</option>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user