I'm trying to show the phone code based on the country selected. Like when you try to register and while choosing a country the phone code changes at the same time.
here's my code.
<select class="form-control" name="country_id" required>
<option value selected disabled>Select Country</option>
@foreach ($countries as $country)
<option value="{{ $country->id }}" id="shop-country">{{ $country->name }}</option>
@endforeach
</select>
<div class="form-group">
<label>Phone Number</label>
@foreach ($countries as $country)
<span id="phonecode">{{ $country->phonecode }}</span>
@endforeach
</div>