@extends('layout.app') @section('styling') @parent @endsection @section('content')
@if ($errors->all())
@foreach($errors->all() as $message) @endforeach
@endif
Edit Lead
@csrf
@foreach($looking_for as $looking)
@endforeach
@if(count($follow_up_notes) > 0)
@php $count = 0; @endphp @foreach($follow_up_notes as $follow_up_note) @php $count = $count+1; @endphp @endforeach
# Date Follow Up
{{$count}} {{$follow_up_note->created_at}} {{$follow_up_note->follow_up_note}}
@endif
@if($lead->attachments && count($lead->attachments) > 0)
    @foreach($lead->attachments as $attachment)
  • @if (pathinfo($attachment->attachment_url, PATHINFO_EXTENSION) == 'pdf') @else Please choose image @endif
    Take a look
  • @endforeach
@endif
@endsection @section('javascript') @parent @endsection