@extends('layouts.mainlayout') @section('fullwidth', true) @section('content')

Email settings

Configure notification type, recipients, transport and content from one place.

@if(session('success'))
{{ session('success') }}
@endif @if(isset($errors) && $errors->any())
@endif
@foreach($settings as $setting)
{{ $setting->label }}
{{ $setting->enabled ? 'Enabled' : 'Disabled' }}
@csrf

{{ $setting->description }}

Comma, semicolon or new-line separated. Dynamic recipients come from the workflow.
Available variables@foreach(($variablesByKey[$setting->key] ?? []) as $variable => $description){{{{ $variable }}}}@endforeach
@csrf
@endforeach
@endsection