@extends('layouts.app') @section('title','Send Money') @push('styles') {{-- Google Fonts --}} @endpush @section('content') @php $me = auth()->user(); @endphp
{{-- animated blobs --}}
{{-- top nav --}}
Send Money
{{-- main card --}}
{{-- header row --}}
{{ $me->name ?? 'User' }}
{{ $me->phone ?? 'Phone not set' }}

Make sure the receiver phone number and amount are correct before sending. If you send to a wrong number, the money may not be recoverable.

{{-- inline errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- form --}}
@csrf {{-- Receiver phone --}}
Enter at least 10 digits.
{{-- receiver preview --}}
{{-- Amount --}}
{{-- PIN --}}
@error('login_pin') {{ $message }} @enderror
{{-- Note --}}
{{-- Idempotency key --}} {{-- Submit --}}
{{-- JS: শুধু search + button enable, কোনও AJAX submit নেই --}} @endsection