@extends($activeTemplate . 'layouts.frontend') @section('content') @php $selectedCategory = $categories->firstWhere('id', request()->category); $personalBuyerFee = $selectedCategory ? $selectedCategory->personal_buyer_fee : 0; $commercialBuyerFee = $selectedCategory ? $selectedCategory->commercial_buyer_fee : 0; @endphp
@csrf
@lang('Title & Description')
@php $accept = '.png, .jpg, .jpeg'; if ($selectedCategory->file_type === 'audio') { $fileTypes = '.' . implode(', .', $selectedCategory->preview_file_types); } @endphp
@lang('Files')
@lang('Supported Files:') {{ $accept }}. @lang('Image size must be') {{ getFileSize('productThumbnail') }} @lang('px')
@if ($selectedCategory->file_type == 'audio') @lang('Supported Files:') {{ $fileTypes }}. @lang('(mp3 for max size is') {{ $selectedCategory->file_size }} @lang('MB)') @else @lang('Supported Files:') {{ $accept }}. @lang('Image size must be') {{ getFileSize('productPreview') }} @lang('px') @endif
@lang('ZIP all the files for buyers.')
@if ($selectedCategory->file_type !== 'audio')
@lang('Upload a zip file of screenshots')
@endif @if ($selectedCategory->file_type !== 'audio')
@lang('File size shouldn\'t be more than 100 MB')
@endif
@if ($selectedCategory->file_type != 'audio')
@lang('Product Attributes')
@if ($form) @endif
file_type != 'audio' ? 'required' : '' }}>
@endif
@lang('Tag & Support')
@if ($isFree == 0)
@lang('License Price')
@lang('Personal License')
@lang('Price')
{{ gs('cur_sym') }}
+
@lang('Buyer Fee') {{ showAmount($personalBuyerFee) }}
=
@lang('Total Price') {{ showAmount($personalBuyerFee) }}
@lang('Commercial License')
@lang('Price')
{{ gs('cur_sym') }}
+
@lang('Buyer Fee') {{ showAmount($commercialBuyerFee) }}
=
@lang('Total Price') {{ showAmount($commercialBuyerFee) }}
@else @endif
@lang('Message to the Reviewer')
@php $uploadTerm = getContent('upload_term.content', true); $uploadTerm = @$uploadTerm->data_values; @endphp
@lang('Switch Category')
@endsection @push('style') @endpush @push('script') @endpush @push('script-lib') @endpush