Default to empty state for Braintree ACH

This commit is contained in:
Benjamin Beganović 2021-09-28 11:30:54 +02:00
parent 9002b622ae
commit 6be0255711

View File

@ -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