@section('page_content')
@csrf
@if(count($leads) == 0)
Error! There are no leads to select from. Please add one now.
@endif
Fill in Form Details
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Back @if(count($leads) > 0) @endif
@stop