@extends('layouts.site-app') @section('sitecontent')
@include('partials.site.header-menu')
{{__('lang.saved_addresses_title')}}
@include('partials.site.user-links')
@if(Session::has('message'))
@endif @if(Session::has('error'))
@endif
{{__('lang.add_address')}}
{!! Form::model(null, ['method' => 'POST', 'url' => ['add-address']]) !!} @csrf {!! Form::close() !!}
@if(count($data)>0) @foreach($data as $row)
@endforeach @endif
@endsection