@extends('layouts.customer') @section('title', __('Settings')) @section('page-title', __('Settings')) @section('content')
{{ __('Basic account settings are managed from your profile page.') }}
{{ __('Manage your sign-in credentials.') }}
{{ $message }}
{{ __('Usage today:') }} {{ (int) ($customer->ai_own_daily_usage ?? 0) }} / {{ ((int) ($customer->ai_own_daily_limit ?? 0)) > 0 ? (int) ($customer->ai_own_daily_limit ?? 0) : __('Unlimited') }}
{{ __('Usage this month:') }} {{ (int) ($customer->ai_own_monthly_usage ?? 0) }} / {{ ((int) ($customer->ai_own_monthly_limit ?? 0)) > 0 ? (int) ($customer->ai_own_monthly_limit ?? 0) : __('Unlimited') }}