We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfde1b7 commit c2c4c87Copy full SHA for c2c4c87
resources/views/admin/add-user-form.blade.php
@@ -16,7 +16,7 @@
16
<select id="country_iso_code" class="form-control" name="country_iso_code" required autofocus data-lpignore="true">
17
<option value="">--SELECT A COUNTRY --</option>
18
@foreach($countries as $country)
19
- <option value="{!! $country->getAlpha2() !!}">{!! $country->getName() !!}</option>
+ <option value="{!! $country['alpha2'] !!}">{!! $country['name'] !!}</option>
20
@endforeach
21
</select>
22
</div>
0 commit comments