@extends('admin.layouts.main') @section('title', ___('Create Post')) @section('content')
@csrf
@if(count($custom_fields)) @foreach($custom_fields as $field) @php $field_title = $field->get_translated_title(); @endphp @if($field->type == "text-field")
{{ ___('This field is required.') }}
@endif @if($field->type == "textarea")
{{ ___('This field is required.') }}
@endif @if($field->type == "drop-down")
{{ ___('This field is required.') }}
@endif @if($field->type == "radio-buttons")
@foreach(explode(',',$field->options) as $option_id) @php $option = get_customOptions_by_id($option_id); @endphp @if($option)
@endif @endforeach
{{ ___('This field is required.') }}
@endif @if($field->type == "checkboxes")

@foreach(explode(',',$field->options) as $option_id) @php $option = get_customOptions_by_id($option_id); @endphp @if($option)
@endif @endforeach
{{ ___('This field is required.') }}
@endif @endforeach @endif
{{$currency_code}}
{{ ___('Drag the map marker to exact address') }}
{{ ___('Enter the tags separated by commas.') }}

@endsection @push('scripts_at_top') @endpush @push('scripts_vendor') @endpush @push('scripts_at_bottom') @if(@$settings->post_desc_editor) @endif @endpush