@include('admin.common.header')
@include('admin.common.sidebar')
Manage Address
Add New Address
@if (session('status'))
{{ session('status') }}
@endif
@foreach ($primary_address as $i => $primary) @endforeach @foreach ($other_address as $i => $other) @endforeach
# Name Address Action
1 {{ $primary->firstname }} {{ $primary->lastname }} Primary Address
{{$primary->companyname}}
{{$primary->streetaddress}} {{$primary->streetaddress1}} , {{$primary->city}} , {{$primary->state_name}} {{$primary->zipcode}}, {{$primary->country_code}}
Edit
{{$i+2}} {{ $other->firstname }} {{ $other->lastname }} {{$other->companyname}}
{{$other->streetaddress}} {{$other->streetaddress1}} , {{$other->city}} , {{$other->state_name}} {{$other->zipcode}}, {{$other->country_code}}
Edit | Delete
@include('admin.common.footer')