@extends('layouts.app') @section('title', 'Create SMS Gateway') @section('description', 'Configure a new SMS gateway') @section('content')
@csrf @if ($errors->any())

There were {{ $errors->count() }} error(s) with your submission:

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

Basic Information

@error('name')

{{ $message }}

@enderror
@error('display_name')

{{ $message }}

@enderror
@error('driver')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror

API Configuration

@error('api_key')

{{ $message }}

@enderror
@error('api_secret')

{{ $message }}

@enderror
@error('sender_id')

{{ $message }}

@enderror
@error('api_url')

{{ $message }}

@enderror

For HRSoft, add: customer_id

Country & Priority Configuration

+

Common codes: Bangladesh (880), USA/Canada (1), UK (44), India (91), Pakistan (92)

@error('country_codes')

{{ $message }}

@enderror

Higher priority = preferred selection (100 is highest)

@error('priority')

{{ $message }}

@enderror
Cancel
@endsection