@extends('client.layouts.main') @section('title', 'Notification Preferences') @section('content')
@csrf @method('PUT')
Notification Preferences

Choose which notifications you want to receive via email and/or SMS.

@foreach($events as $slug => $label) @php $pref = $prefs[$slug] ?? null; @endphp @endforeach
Event Email SMS
{{ $label }}
email : true) ? 'checked' : '' }}>
sms : true) ? 'checked' : '' }}>
@endsection