File: D:/HostingSpaces/debout/debout.nl/resources/views/shop/partials/checkout/invoice_details.blade.php
@foreach($addresses as $address)
@include('shop.partials.checkout.address_radio', ['prefix' => 'invoice_', 'address' => $address, 'selected_id' => old('selected_invoice_address', ($lastUsedInvoiceAddress) ? $lastUsedInvoiceAddress->id : 0)])
<br>
@endforeach
<br><br>
<label for="invoice_address_-1">@lang('shop/checkout.new_address')</label>
<input type="radio" name="invoice_address" value="-1" id="invoice_address_-1" @if(!$lastUsedInvoiceAddress) checked @endif dusk="new_invoice_address"><br> <!-- We use -1 for the backend. So it knows it should not use an existing id but the address inputs instead -->
@include('shop.partials.checkout.address_fillable', ['prefix' => 'invoice_'])