@extends($activeTheme.'layouts.main') @section('title', ___('Post ad')) @section('content')

{{ ___('Post An Advertise') }}

@csrf

{{ ___('Listing Details') }}

{{ ___('Title') }} *
{{ ___('Description') }} *
{{ ___('Upload Images') }}
@if(count($custom_fields)) @foreach($custom_fields as $field) @php $field_title = $field->get_translated_title(); @endphp @if($field->type == "text-field")
{{ $field_title }}
{{ ___('This field is required.') }}
@endif @if($field->type == "textarea")
{{ $field_title }}
{{ ___('This field is required.') }}

Html tags are allow.

@endif @if($field->type == "drop-down")
{{ $field_title }}
@endif @if($field->type == "radio-buttons")
{{ $field_title }}
@foreach(explode(',',$field->options) as $option_id) @php $option = get_customOptions_by_id($option_id); @endphp @if($option)

@endif @endforeach
@endif @if($field->type == "checkboxes")
{{ $field_title }}
@foreach(explode(',',$field->options) as $option_id) @php $option = get_customOptions_by_id($option_id); @endphp @if($option)
@endif @endforeach
@endif @endforeach @endif
{{ ___('Price') }}
{{ $currency->code }}
{{ ___('Phone Number') }}
{{ ___('City') }} *
@if(@$settings->post_address_mode)
{{ ___('Address') }}
{{ ___('Drag the map marker to exact address') }}
@endif @if(@$settings->post_tags_mode)
{{ ___('Tags') }}
{{ ___('Enter the tags separated by commas.') }}
@endif
@guest

{{ ___('User Details') }}

{{ ___('Full Name') }} *
{{ ___('username') }} *
{{ ___('Email') }} *
{{ ___('Password') }} *
@endguest @if(@$settings->post_premium_listing)

{{ ___('Make your listing premium') }} ({{ ___('Optional') }})

{{ ___('Your ad will go live after check by reviewer.') }}

{{ ___('You can optionally select some upgrades to get the best results.') }}

{{ ___('Featured ads attract higher-quality viewer and are displayed prominently in the Featured ads section home page.') }}
{{ price_symbol_format($plan->settings->featured_project_fee) }}
{{ ___('Make your ad stand out and let viewer know that your advertise is time sensitive.') }}
{{ price_symbol_format($plan->settings->urgent_project_fee) }}
{{ ___('Make your ad highlighted with border in listing search result page. Easy to focus.') }}
{{ price_symbol_format($plan->settings->urgent_project_fee) }}
@endif
{!! display_captcha() !!} @error('g-recaptcha-response') {{ $message }} @enderror

{{ ___('Tips!') }}

  • {{ ___('Enter a brief description of the advertise.') }}
  • {{ ___('Add your product photo.') }}
  • {{ ___('Choose the correct category and sub-category of the ad.') }}
  • {{ ___('Check again before submit the ad.') }}
@endsection @push('scripts_vendor') {!! google_captcha() !!} @endpush @push('scripts_at_bottom') @if(@$settings->post_desc_editor) @endif @if(@$settings->post_address_mode) @if(@$settings->map_type == 'google') @else @endif @endif @endpush