@extends('layouts.admin.theme') @section('title', env('APP_NAME').' :: '.__('Novo arquivo para ') . $conselho->nome) @section('content')
@php $headLine = " . __('Novo arquivo para ') . " " . $conselho->nome; @endphp @include('components.buttons._headLineButtonsBackAdd', ['headLine' => $headLine, 'routeBack' => 'admin.conselhosMunicipais.arquivos.index', 'routeBackParams' => [$conselho->id], 'nameBack' => __('Voltar'), 'permission' => 'GERENCIADOR_DE_CONSELHOS'])
@include('errors.messageFlash')
@csrf
@error('tipo') {{ $message }} @enderror
@error('link') {{ $message }}
@enderror {{ __('* Apenas documento em PDF') }}

@include('components.inputs._inputType', ['label'=>__('Nome do documento'),'name'=>'nome','required'=>true])
@error('evento_at') {{ $message }} @enderror
@error('status') {{ $message }} @enderror
@include('components.buttons._backAndSend', [ 'textBack' => __('Voltar'), 'textSend' => __('Cadastrar'), 'routeBack' => 'admin.conselhosMunicipais.arquivos.index', 'backId' => $conselho->id ])
@endsection