Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions resources/views/shared/users/sidebar.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,18 @@
@endif
</div>

<div class="card card-body mt-3">
<h5 class="mb-3 font-weight-bold">
{{__('Task Notifications Email')}}
</h5>
<div class="form-group">
<div class="custom-control custom-switch">
{!! Form::checkbox('email_task_notification', 1, false, ['id' => 'email_task_notification', 'class' => 'custom-control-input', 'v-model' => 'formData.email_task_notification']) !!}
<label class="custom-control-label" for="email_task_notification">{{__('Forward notifications to my email address')}}</label>
</div>
</div>
</div>

@isset($addons)
@foreach ($addons as $addon)
{!! $addon['content'] ?? '' !!}
Expand Down