@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Editar Atendimento") @section('content')
@php $headLine = " Editar Atendimento"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.contaAngra.chamados.index', 'routeBackParams' => [], 'nameBack' => __("Voltar"), "permission" => "GERENCIADOR_DE_CONTA_ANGRA", ])
id) }}" method="post" enctype="multipart/form-data"> @csrf @method('put') @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', $chamado->convenio), "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', $chamado->assunto), "oninput" => "javascript:this.value = this.value .toLocaleUpperCase('pt-BR') .replace(/[<>]/g, '') .replace(/\s{2,}/g, ' ') .trimStart();", "readonly" => false, "small" => null, ])
{{ __("Sair") }}
@endsection