@extends('layouts.app') @section('title', __('Customer Fields')) @section('content')
{{ __('Customer Fields') }}{{ __('New Customer Field') }}
{{ csrf_field() }}
{{ __('Standard customer fields to show in conversation list') }}
@if (count($settings['customer_fields']))
@foreach ($settings['customer_fields'] as $customer_field)
@include('crm::partials/customer_fields_form_update', ['mode' => 'update'])
{{ __('Delete') }}
@endforeach
@else @include('partials/empty', ['icon' => 'list-alt', 'empty_header' => __("Customer Fields")]) @endif @endsection @section('javascript') @parent crmInitCustomerFieldsAdmin(); @endsection