@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(Session::has('error'))
{{ Session::get('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