@extends('layouts.app') @section('page-header') @endsection @section('htmlheader_title') Add an Billing info to a Lead @endsection @section('contentheader_title') Add an Billing info to a Lead @endsection @section('main-content')

We have {{$total}} Lead's

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


{{Billing::displayform()}}
@endsection @section('page-scripts') {{ asset('/plugins/jQuery/jQuery-2.1.4.min.js') }} @endsection