@extends('layouts.app') @section('page-header') @endsection @section('htmlheader_title') Add a Location to a Customer @endsection @section('contentheader_title') Add a Location to a Customer @endsection @section('main-content')

We have {{$total}} Customer's

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($customers as $customer) @endforeach
Select Name Phone Email Type Address City Zip
{{ $customer->name}} {{ $customer->tel}} {{ $customer->email}} {{ $customer->type}} {{ $customer->add}} {{ $customer->city}} {{ $customer->zip}}
Select Name Phone Type Address City Zip


@if ($geoservice == 'manual')
@else @endif
@endsection @section('page-scripts') {{ asset('/plugins/jQuery/jQuery-2.1.4.min.js') }} @endsection