@extends('layouts.front') @section('title')@lang('Shipping Addresses') - {{config('app.name')}}@endsection @section('styles') @endsection @section('content')
@include('partials.front.sidebar')

@lang('Your Addresses')

@if(session()->has('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() !!}
@endforeach @else

Address not found

@endif
@endsection