@csrf
@method('post')
@include('components.inputs._textarea', [
'label' => 'Nova mensagem',
'name' => 'mensagem',
'id' => 'limiteCaracter',
'rows' => 5,
'required' => true,
'height' => '200px',
'class' => "textarea-body",
'style' => null,
"oninput" => null,
'value' => old('mensagem'),
'small' => null,
])
@include('components.inputs._inputType',[
"for" => "link",
"label" => "Arquivos",
"name" => "link[]",
"id" => 'link',
"required" => false,
"type" => 'file',
"old" => null,
"oninput" => null,
"readonly" => true,
"multiple" => true,
"small" => "* Apenas documentos de imagem: PDF, JPG, JPEG, PNG, GIF, BMP, WEBP.",
"accept" => 'application/pdf,image/*',
])
@include('components.buttons._backAndSend', [
'textBack' => 'Voltar',
'textSend' => 'Nova mensagem',
'routeBack' => 'admin.contaAngra.chamados.index'
])