@extends('layouts.app') @section('title', $page_title) @section('styles') @endsection @push('scripts') @endpush @php $attributes = json_decode($segment->attributes) @endphp @section('content')
@csrf @method('PUT')
@php $list_ids = $attributes->list_ids @endphp @include('includes.dropdown_lists', ['popup' => 0, 'multiple' => 1, 'required' => 1])
{{ __('app.contact_filters') }}
@php $contact_filter = $attributes->contact_filter @endphp @foreach($contact_filter as $filter)
AND
 
  @if($filter->name == 'email') @else @endif
 
@endforeach
{{ __('app.custom_fields_filters') }}
@php $custom_fields_filter = $attributes->custom_fields_filter @endphp @foreach($custom_fields_filter as $filter)
AND
 
 
 
@endforeach
{{ __('app.date_filters') }}
@php $dates_filter = $attributes->dates_filter @endphp @foreach($dates_filter as $filter)
AND
 
 
 
@endforeach
@endsection