{{ __('Notifications') }}

{{ __('Choose what you want to be notified about and how.') }}

@if (session('status') === 'preferences-updated')

{{ __('Saved.') }}

@endif @include('profile.partials._notifications-shared')
@csrf @method('PATCH') {{-- Who may send invitations --}}
{{ __('Who may send me invitations?') }} @php $inviteFrom = $user->invite_from ?? ['everyone']; @endphp
@foreach ([ ['everyone', __('Everyone'), null], ['group_members', __('Groups I am a member of'), null], ['verified', __('Verified members'), __('PRO and ORG profiles and registered support providers.')], ] as [$value, $label, $hint]) @endforeach
{{-- In-app notifications --}}
{{ __('In-app notifications') }}
@foreach ([ ['notify_group_activity', __('Notify me about new posts in my groups')], ['notify_event_reminders', __('Remind me about upcoming events')], ['notify_group_invite', __('Notify me when I am invited to a group')], ['notify_event_invite', __('Notify me when I am invited to an event')], ] as [$field, $label]) @endforeach
{{-- Email preferences --}}
{{ __('Email preferences') }}
@foreach ([ ['email_message', __('Email me when I receive a new message'), null], ['email_group_invite', __('Email me when I am invited to a group'), null], ['email_event_invite', __('Email me when I am invited to an event'), null], ['email_digest', __('Monthly digest: activity summary and new features'), __('Sent once a month. Unsubscribe at any time.')], ['email_marketing', __('Occasional newsletters and platform news'), __('We will never sell your data or send spam.')], ] as [$field, $label, $hint]) @endforeach