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

{{ __('AI Image to Video') }}

{{ __('Bring a life to your images with AI') }}

{{ __('Your Balance is') }} @if (auth()->user()->image_credits == -1) {{ __('Unlimited') }} @else {{ number_format(auth()->user()->image_credits + auth()->user()->image_credits_prepaid) }}@endif {{ __('credits') }}

@csrf
{{ __('Title') }}
{{ __('Target Image') }}

{{ __('Drag and drop your image or') }} {{ __('Browse') }}

{{ __('PNG | JPG | WEBP') }}

{{ __('Prompt') }}
{{ __('Duration') }}
{{ __('Aspect Ratio') }}
@if ($results->count())
@foreach ($results as $result)
{{$result->title}}

{{date('M d, Y', strtotime($result->created_at))}}

@if ($result->status == 'processing')

({{__('Processing')}})

@endif
@endforeach
@else
{{ __('Start generating your video') }}
@endif
@endsection @section('js') @endsection