diff --git a/resources/views/settings/integrations.blade.php b/resources/views/settings/integrations.blade.php new file mode 100644 index 0000000..854e7e9 --- /dev/null +++ b/resources/views/settings/integrations.blade.php @@ -0,0 +1,199 @@ +@extends('layouts.app') + +@section('title', 'Settings — Integrations') + +@section('content') +
+

Settings — Integrations

+

Configure third-party service integrations.

+
+ +
+ +
+
+ + + +

WhatsApp (UltraMSG)

+
+ +
+ @csrf + + {{-- Enable toggle --}} +
+
+

Enable WhatsApp Notifications

+

When disabled, no messages will be sent.

+
+ +
+ +
+ + {{-- Instance ID --}} +
+ + + @error('instance_id')

{{ $message }}

@enderror +
+ + {{-- API Token --}} +
+ +
+ + +
+ @error('token')

{{ $message }}

@enderror +
+ + {{-- Webhook Secret --}} +
+ +
+ + +
+
+ + {{-- Webhook Path --}} +
+ +
+ {{ url('/') }}/ + +
+

+ Paste this full URL in your UltraMSG dashboard: {{ url('/') }}/{{ $settings['webhook_path'] }} +

+ @error('webhook_path')

{{ $message }}

@enderror +
+ + {{-- Actions --}} +
+
+ + +
+ +
+ +
+
+ +
+ + +@endsection