mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 08:24:39 -04:00
set default country instead
This commit is contained in:
parent
dbfc1046ec
commit
06f764fa95
@ -49,10 +49,13 @@
|
|||||||
Country
|
Country
|
||||||
</dt>
|
</dt>
|
||||||
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||||
|
@if('US' == $country)
|
||||||
<input type="radio" id="us" name="country" value="US" required @checked(old('country', $country) == 'US')>
|
<input type="radio" id="us" name="country" value="US" required @checked(old('country', $country) == 'US')>
|
||||||
<label for="us">United States</label><br>
|
<label for="us">United States</label><br>
|
||||||
|
@else
|
||||||
<input type="radio" id="ca" name="country" value="CA" required @checked(old('country', $country) == 'CA')>
|
<input type="radio" id="ca" name="country" value="CA" required @checked(old('country', $country) == 'CA')>
|
||||||
<label for="ca">Canada</label><br>
|
<label for="ca">Canada</label><br>
|
||||||
|
@endif
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user