@extends('user.layouts.app') @section('title', 'إنشاء حساب جديد') @section('content')

انضم إلينا

استمتع بجميع الخدمات المميزة

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@error('name') {{ $message }} @enderror
@error('mobile') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('country_id') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@error('password_confirmation') {{ $message }} @enderror
@if (!empty($vendorReferralInfo['is_vendor_referral']) && $vendorReferralInfo['currency_id']) {{-- Vendor referral: currency is fixed to vendor's currency --}}
@php $vendorCurrency = \App\Models\Currency::find($vendorReferralInfo['currency_id']); @endphp {{ $vendorCurrency?->name ?? 'العملة محددة تلقائياً' }} (محددة من قبل التاجر {{ $vendorReferralInfo['vendor_name'] ?? '' }})
@else {{-- Normal registration: user can choose currency --}}
@endif @error('currency_id') {{ $message }} @enderror
@if (isset($imj))
Puzzle Captcha
@error('answer') {{ $message }} @enderror
@endif
@error('accept_terms') {{ $message }} @enderror
لديك حساب بالفعل؟ تسجيل الدخول
@endsection