@extends('layouts.client') @include('client.financing-request._home_theme') @section('title', ln('Choose Offer', 'اختر العرض')) @section('page_title', ln('Choose Your Financing Offer', 'اختر عرض التمويل المناسب')) @section('content')

{{ ln('Choose Your Financing Offer', 'اختر عرض التمويل المناسب') }}

{{ ln('Payment completed successfully. You can now choose an offer.', 'تم الدفع بنجاح. يمكنك الآن اختيار العرض.') }}
@csrf
@forelse($offers as $offer) @empty @endforelse
{{ ln('Select', 'اختر') }} {{ ln('Bank', 'البنك') }} {{ ln('Monthly Installment', 'القسط الشهري') }} {{ ln('Financing Amount', 'مبلغ التمويل') }}
{{ $offer['bank'] ?? '-' }} {{ $offer['monthly'] ?? '-' }} {{ $offer['amount'] ?? '-' }}
{{ ln('No offers available yet.', 'لا توجد عروض متاحة حالياً.') }}
@if(count($offers ?? []))
@if(!$request->facilitation_requested_at) {{ ln('Financing Facilitation', 'خدمة تسهيلات تمويلية') }} @endif
@endif
@endsection