@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(session()->has('massage'))
{{ session('massage') }}
@endif
Registration
@if ($customer)
Referral ID: {{ $customer->customer_id ?? "No Referral ID" }}
Referral Name: {{ $customer->name ?? "Invalid Referral" }}
@else
No referral information available.
@endif