@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Novo Atendimento") @section('content')
@php $headLine = " Novo Atendimento"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.contaAngra.chamados.index', 'routeBackParams' => [], 'nameBack' => __("Voltar"), "permission" => "GERENCIADOR_DE_CONTA_ANGRA", ])
@csrf @method('post') @if(!empty($preset['credenciamento_id'])) @endif @include("errors.messageFlash") @include('components.modal._modelProfile')
@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, ])
{{ __("Sair") }}
@endsection