@extends('adminlte::page') @section('title', 'Create Payment Link') @section('content_header')

Create Payment Link

@stop @section('content')
{{-- Display validation errors --}} @if ($errors->any())
Error!
@endif

Payment Link Information

@csrf
Leave empty to set custom amount @error('service_id') {{ $message }} @enderror
Leave empty to use service price @error('custom_amount') {{ $message }} @enderror
@error('currency') {{ $message }} @enderror

@error('customer_name') {{ $message }} @enderror
@error('customer_email') {{ $message }} @enderror

Leave empty for no expiration @error('expires_at') {{ $message }} @enderror
@error('admin_notes') {{ $message }} @enderror
Customer email must be provided above

Help

How to use Payment Links:
  1. Select a service or set custom amount
  2. Optionally pre-fill customer details
  3. Set expiration date if needed
  4. Copy and share the link with customer
Required Fields:

You can make customer name or email mandatory by checking the respective boxes.

Custom Amount:

If you select a service, its price will be used. Custom amount overrides service price.

@stop