- {t.tripDetails}
-
- {pickupOptions.length > 0 ? (
-
-
-
-
- ) : null}
-
- {allowDifferentDropoff ? (
-
-
-
-
-
-
- {fields.dropoffMode === 'different' && dropoffOptions.length > 0 ? (
-
-
-
-
- ) : (
-
{fields.pickupLocation || t.sameAsPickup}
- )}
-
- ) : null}
-
-
- update('startDate', value)} />
- update('endDate', value)} />
-
-
- {totalDays > 0 ? (
-
- {t.estimatedTotal}:{' '}
- {formatCurrency(dailyRate * totalDays, 'MAD', language)}{' '}
- ({totalDays} {t.days})
-
- ) : null}
-
- {availability.status === 'checking' ? (
-
- {t.checkingAvailability}
-
- ) : null}
-
- {availability.status === 'available' ? (
-
- {t.likelyAvailable}
-
- ) : null}
-
- {availability.status === 'unavailable' ? (
-
- {buildUnavailableMessage(availability.nextAvailableAt)}
-
- ) : null}
-
- {availability.status === 'error' ? (
-
- {t.availabilityError}
-
- ) : null}
-
-
-