@extends('ahphc.mod_config.layout')
@section('dataForm_method', 'POST')
@section('dataForm_action', route('config.update'))
@section('dataForm_laravelCsrf', csrf_field())
@section('dataForm_laravelMethod', method_field('PUT'))
{{-- APP --}}
@section('page_width_class', $errors->has('page_width') ? 'mods-errorField' : '')
@section('page_width_value', old('page_width', $configAhpHc->page_width))
@section('page_width_disabled', '')
@section('autosave_minutes_class', $errors->has('autosave_minutes') ? 'mods-errorField' : '')
@section('autosave_minutes_value', old('autosave_minutes', $configAhpHc->autosave_minutes))
@section('autosave_minutes_disabled', '')
{{-- GENERAL --}}
@section('lenguage_class', $errors->has('lenguage') ? 'mods-errorField' : '')
@section('lenguage_value', old('lenguage', $configAhp->lenguage))
@section('lenguage_disabled', '')
@section('country_class', $errors->has('country') ? 'mods-errorField' : '')
@section('country_value', old('country', $configAhp->country))
@section('country_disabled', '')
@section('format_longdate_class', $errors->has('format_longdate') ? 'mods-errorField' : '')
@section('format_longdate_disabled', '')
@section('format_shortdate_class', $errors->has('format_shortdate') ? 'mods-errorField' : '')
@section('format_shortdate_disabled', '')
@section('format_hours_class', $errors->has('format_hours') ? 'mods-errorField' : '')
@section('format_hours_disabled', '')
@section('format_numbers_sep_class', $errors->has('format_numbers_sep') ? 'mods-errorField' : '')
@section('format_numbers_sep_disabled', '')
@section('format_numbers_dec_class', $errors->has('format_numbers_dec') ? 'mods-errorField' : '')
@section('format_numbers_dec_disabled', '')
@section('format_numbers_dec_sep_class', $errors->has('format_numbers_dec_sep') ? 'mods-errorField' : '')
@section('format_numbers_dec_sep_disabled', '')
@section('format_currency_prefix_class', $errors->has('format_currency_prefix') ? 'mods-errorField' : '')
@section('format_currency_prefix_disabled', '')
@section('format_currency_sep_class', $errors->has('format_currency_sep') ? 'mods-errorField' : '')
@section('format_currency_sep_disabled', '')
@section('format_currency_dec_class', $errors->has('format_currency_dec') ? 'mods-errorField' : '')
@section('format_currency_dec_disabled', '')
@section('format_currency_dec_sep_class', $errors->has('format_currency_dec_sep') ? 'mods-errorField' : '')
@section('format_currency_dec_sep_disabled', '')
@section('format_currency_suffix_class', $errors->has('format_currency_suffix') ? 'mods-errorField' : '')
@section('format_currency_suffix_disabled', '')
@section('api_key_class', $errors->has('api_search_city') ? 'mods-errorField' : '')
@section('api_key_disabled', '')
@section('reports_header_class', $errors->has('reportHeader') ? 'mods-errorField' : '')
@section('reports_header_value', old('reportHeader', ''))
@section('reports_header_disabled', '')
@section('dataButtonSave_disabled', '')
@section('dataButtonSave_formType', 'submit')
@section('dataButtonSave_formId', 'dataForm')