@extends('layouts.app') @section('title', __('messages.settings')) @section('content') @include('crm::layouts.nav')

@lang('messages.settings')

{!! Form::open(['url' => action([\Modules\Crm\Http\Controllers\CrmSettingsController::class, 'updateSettings']), 'method' => 'post']) !!} @component('components.widget', ['class' => 'box-solid'])
@show_tooltip(__('crm::lang.enable_order_request_help'))
{!! Form::label('order_request_prefix', __('crm::lang.order_request_prefix') . ':') !!} {!! Form::text('order_request_prefix', $crm_settings['order_request_prefix'] ?? null, ['class' => 'form-control','placeholder' => __( 'crm::lang.order_request_prefix' )]); !!}

@show_tooltip(__('crm::lang.enable_phone_list_reminder_help'))
{!! Form::label('phone_list_reminder_days', __('crm::lang.phone_list_reminder_days') . ':') !!} {!! Form::number('phone_list_reminder_days', $crm_settings['phone_list_reminder_days'] ?? 1, ['class' => 'form-control', 'min' => 1]); !!}

@lang('crm::lang.telemarketing_settings')

@show_tooltip(__('crm::lang.enable_telemarketing_help'))
{!! Form::label('call_lock_minutes', __('crm::lang.call_lock_minutes') . ':') !!} {!! Form::number('call_lock_minutes', $crm_settings['call_lock_minutes'] ?? 15, ['class' => 'form-control', 'min' => 1]); !!}
{!! Form::label('daily_call_target_per_agent', __('crm::lang.daily_call_target') . ':') !!} {!! Form::number('daily_call_target_per_agent', $crm_settings['daily_call_target_per_agent'] ?? 50, ['class' => 'form-control', 'min' => 1]); !!}
{!! Form::label('followup_days_after_interested', __('crm::lang.followup_days_after_interested') . ':') !!} {!! Form::number('followup_days_after_interested', $crm_settings['followup_days_after_interested'] ?? 3, ['class' => 'form-control', 'min' => 1]); !!}
@endcomponent {!! Form::close() !!}
@stop @section('javascript') @endsection