@php
$label = 'Notify customer by email';
if(!empty($lead->user->email)) $label .= ' ('.$lead->user->email.')';
@endphp
{!! Form::checkbox('notify_lead_email', 1, null,
['id' => 'notify_lead_email', 'class' => 'p-0']) !!}
{!! Form::label('notify_lead_email', $label) !!}
@php
$label = 'Notify staff by email';
if(!empty($staff->user->email)) $label .= ' ('.$staff->user->email.')';
@endphp
{!! Form::checkbox('notify_staff_email', 1, null,
['id' => 'notify_staff_email', 'class' => 'p-0']) !!}
{!! Form::label('notify_staff_email', $label) !!}