@extends('layouts.app') @section('css') @endsection @section('content')
@csrf

{{ __('AI Vision') }}

{{ __($chat->description) }}
{{ __('Your Balance is') }} @if (auth()->user()->gpt_3_turbo_credits == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->gpt_3_turbo_credits + auth()->user()->gpt_3_turbo_credits_prepaid) }} @endif {{ __('GPT 3.5 Turbo') }} {{ __('Words') }}
@foreach ($messages as $key => $message)
{{ __($message->title) }}
{{ $message->messages }} {{ __('messages') }}
{{ \Carbon\Carbon::parse($message->updated_at)->diffForhumans() }}
@endforeach
Avatar
{{ __($chat->name) }}
{{ __($chat->sub_name) }}
{{ __('Hey there, I can help you with analyzing any image that you upload') }}

{{ __('Drop your images to analyze here or') }} {{ __('Browse') }}

{{ __('Allowed image formats') }}: .png .jpeg .webp

{{ __('Max image size') }}: 20MB

@endsection @section('js') @endsection