@extends('layouts.dashboard') @section('title', 'Create User') @section('content')

Create New User

Back to Users
@csrf @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@error('name')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror Minimum 6 characters

Service Settings
Allow user to send auto-reply SMS
Allow promotional messages on calls
Cancel
User Creation Notes
  • Users can only be created by admins
  • Phone number must be unique
  • User will use phone + password to login on Android app
  • You can assign templates after creating the user
  • Default settings will be applied automatically
@endsection