@extends('layouts.admin') @section('title', 'SMS Settings') @section('page-title', 'SMS Settings') @section('breadcrumbs') Settings chevron_right SMS Settings @endsection @section('content')

SMS Settings

Configure SMS gateway settings for sending notifications

@if (session('success'))
check_circle {{ session('success') }}
@endif @if (session('error'))
error {{ session('error') }}
@endif @if ($errors->any())
error

Please correct the following errors:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Select the SMS provider you want to use

Twilio Configuration

info

How to Get Your Twilio Credentials

  1. Sign up at Twilio (free trial available)
  2. Go to Console DashboardAccount Info
  3. Account SID: Found in Account Info section (starts with AC...)
  4. Auth Token: Click "View" next to Auth Token in Account Info (keep it secret!)
  5. From Number: Go to Phone NumbersManageBuy a Number → Purchase an SMS-enabled number

Note: Free trial includes $15.50 credit. Use E.164 format for phone numbers (e.g., +1234567890).

Your Twilio Account SID

Your Twilio Auth Token

Your Twilio phone number (E.164 format)

Optional: Default sender name/ID for SMS messages

@endsection