Commit 37084fbc authored by Yuri Resende's avatar Yuri Resende
Browse files

Adicionando campo para envio de PDF do processo SIPAC em editais de fluxo contínuo

parent d7860438
......@@ -7,11 +7,21 @@
<div class="col-md-12"><h5 style="color: #234B8B; font-weight: bold">Anexos do Projeto</h5></div>
</div>
<hr style="border-top: 1px solid#1492E6; margin-bottom: 10px" >
{{-- Anexo do Projeto --}}
<div class="row justify-content-start">
{{-- Arquivo --}}
@if($edital->tipo == "CONTINUO")
<div class="form-group col-md-6" style="margin-top: 10px">
<label for="anexoSIPAC" class="col-form-label font-tam" style="font-weight: bold">{{ __('Processo SIPAC: ') }}<span style="color: red; font-weight:bold">*</span></label>
<input type="file" class="input-group-text" name="SIPAC" placeholder="PDF do processo SIPAC" accept=".pdf" />
@error('anexoSIPAC')
<span class="invalid-feedback" role="alert" style="overflow: visible; display:block">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
@else
<div class="form-group col-md-6">
<label for="anexoProjeto" class="col-form-label font-tam" style="font-weight: bold">{{ __('Projeto: ') }}<span style="color: red; font-weight:bold">*</span></label>
<input type="file" class="input-group-text" name="anexoProjeto" placeholder="nomeProjeto" accept="application/pdf" />
......@@ -131,6 +141,7 @@
@enderror
</div>
@endif
@endif
</div>
</div>
</div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment