@include('components.inputs._selectType', [
"for" => "convenio",
"label" => "Serviço ou convênio",
"name" => "convenio",
"id" => "convenio",
"required" => true,
"readonly" => false,
"placeholder" => "Selecione uma opção...",
"options" => $convenios,
"selected" => old('convenio', $preset['convenio'] ?? null),
"small" => "Deseja abrir um chamado para qual serviço ou convênio.",
])
@include('components.inputs._inputType',[
"for" => null,
"label" => "Assunto",
"name" => "assunto",
"id" => null,
"required" => true,
"type" => null,
"old" => old('assunto', $preset['assunto'] ?? null),
"oninput" => "javascript:this.value = this.value
.toLocaleUpperCase('pt-BR')
.replace(/[<>]/g, '')
.replace(/\s{2,}/g, ' ')
.trimStart();",
"readonly" => false,
"small" => null,
])