@extends('layouts.admin') @section('title', 'Communication Settings') @section('header', 'Communication Settings') @section('content')
Email Settings
@csrf
@php $mailPassword = $settings['mail_password'] ?? config('mail.mailers.smtp.password'); $maskedMailPassword = !empty($mailPassword) ? substr($mailPassword, 0, 3) . str_repeat('*', 8) . substr($mailPassword, -3) : ''; @endphp
Saved password is shown here for direct review and editing.

Message Settings
Used to prefill customer mobile auth and normalize phone numbers to E.164.

Social Login
Used by the mobile app to request a Firebase-compatible Google ID token.
Keep Apple provider enabled in Firebase Authentication before enabling this in production.
Only verified Firebase social email tokens are accepted for linking.
@endsection