{{ __('New Call') }} {{-- No credits modal --}} {{ trans_with_platform('Post a @PLATFORM_NAME@ call') }} @if ($spendableBalance !== null)
{{ __('Current balance total') }}: {{ tbFormat($spendableBalance) }}
@endif @livewire('static-post', ['type' => 'SiteContents\\Call\\NotAllowed', 'limit' => 1, 'hideAuthor' => true, 'fallbackText' => trans_with_platform('You need @PLATFORM_CURRENCY_NAME_PLURAL@ to post a call.')])
{{ __('OK') }}
@if ($showModal) {{ trans_with_platform('Post a @PLATFORM_NAME@ call') }}
{{-- Tag picker (dedicated component) --}} @error('tagId')

{{ $message }}

@enderror {{-- Content --}} @php $contentMax = timebank_config('calls.content_max_input', 200); @endphp
@error('content')

{{ $message }}

@enderror
{{-- Location --}}
@error('country')

{{ $message }}

@enderror
{{-- Expiry date --}}
@php $tillMinDate = now()->addDay()->format('Y-m-d'); $activeProfileType = session('activeProfileType'); $tillMaxDays = ($activeProfileType && $activeProfileType !== \App\Models\User::class) ? timebank_config('calls.till_max_days_non_user') : timebank_config('calls.till_max_days'); $tillMaxDate = $tillMaxDays !== null ? now()->addDays($tillMaxDays)->format('Y-m-d') : null; @endphp
@error('till')

{{ $message }}

@enderror
{{-- Visibility --}}
@if ($isPublic)

{{ str_replace(':username', $profileName, __('This exposes your username (:username), your profile photo and your profile and work locations!')) }}

@endif
{{ __('Cancel') }} {{ __('Publish') }}
@endif