@extends('layouts.backend') @section('title', '| CRM Settings') @section('css') @endsection @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif @if ($message = Session::get('error'))
{{ $message }}
@endif

Settings

@csrf @foreach($settings as $setting)
{{-- @Author : Gurupriya Solanki Updated Date : 16 May 2024 Description : As of now We need to show profile edit request option here. I have insert application_name key, lable and value in Table. to store account_id of Vtiger. Because I need it to create Sales Order for contact. And From API there is some issue so we are not able to fetch id by name. application_name value is updating by app\Http\Controllers\VtigerController.php by function is createAccount_And_Get_Account_id * So thats why I have added if conditon here. Because account_id need to be use for backend only. --}} @if($setting->key == 'user_profile_edit_requests')
@endif
@endforeach
@endsection