@extends('layouts.'.env('THEME')) @section('content')
< Feed < Schedule @if(sizeof($note_info->time_slots) > 0) Parent time slot @endif @if(!empty($note_info->getSubjectLead()))
Note is attached to
{!! $note_info->getSubjectLead()->fullname !!}
{!! $note_info->getSubjectLead()->address->full() !!} {!! $note_info->getSubjectLead()->getEmail() !!}
@endif {!! Form::model($note_info, ['route' => ['note.update', $note_info->id], 'files' => true, 'id' => 'update_note_form' ]) !!} @method('PATCH') {!! Form::token() !!} @include('staff.notes.form')
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
{{ csrf_field() }} @method('DELETE')


@endsection @section('script') @include('staff.notes.script') @endsection