Mobile Number*
<select class="country_selector" >
@foreach($countries as $country)
<option value="{{ $country->CountryCode }}" class="country-option col-3">
<span>
<img src="data:image/svg+xml;base64,{{ $country->FlagImg}}" class="country-flag" alt="{{ $country->CountryName}}" />
+{{ $country->CountryCode }} ({{ $country->CountryShortCode}})
</span>
</option>
@endforeach
</select>
I need to show the country’s image and phonenumbercode in the dropdown select option, the image is in base 64 encoded text format , and this only shows the countryphonenumbercode and countryshortcode. what i need to do now for displaying the image and numbercode
New contributor
Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1