{{session('address_deleted')}}
@endif
@if($customers->count() > 0)
@foreach($customers as $key => $customer)
{{$key+1}}. @lang('Shipping Address')
{{$customer->first_name . ' ' . $customer->last_name}},{{$customer->address}}
{{$customer->city . ', ' . $customer->state . ' - ' . $customer->zip}}
{{$customer->country}}.
@lang('Phone:') {{$customer->phone}}
@lang('Email:') {{$customer->email}}
@lang('Edit')
{!! Form::model($customer, ['method'=>'delete', 'action'=>['FrontCustomersController@destroy', $customer->id], 'id'=> 'delete-form-'.$customer->id, 'style'=>'display: none;']) !!}
{!! Form::close() !!}
Address not found