@extends('layouts.app') @section('page-header') @endsection @section('htmlheader_title') Add a note about a Contact @endsection @section('contentheader_title') Add a note about a Contact @endsection @section('main-content')

Select a Contact to Create a Note

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


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