@extends('layouts.admin.app') @section('content') @include('layouts.errors-and-messages') {{ csrf_field() }} Customers @foreach($customers as $customer) @if($customer->id == $customerId) {{ $customer->name }} @else {{ $customer->name }} @endif @endforeach Alias * Address 1 * Address 2 Country @foreach($countries as $country) @if($country->id == $countryId) {{ $country->name }} @else {{ $country->name }} @endif @endforeach Province @foreach($provinces as $province) @if($province->id == $provinceId) {{ $province->name }} @else {{ $province->name }} @endif @endforeach City @foreach($cities as $city) @if($city->id == $cityId) {{ $city->name }} @else {{ $city->name }} @endif @endforeach Zip Code @include('admin.shared.status-select', ['status' => $address->status]) @endsection @section('js') @endsection