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 @@ ...@@ -7,11 +7,21 @@
<div class="col-md-12"><h5 style="color: #234B8B; font-weight: bold">Anexos do Projeto</h5></div> <div class="col-md-12"><h5 style="color: #234B8B; font-weight: bold">Anexos do Projeto</h5></div>
</div> </div>
<hr style="border-top: 1px solid#1492E6; margin-bottom: 10px" > <hr style="border-top: 1px solid#1492E6; margin-bottom: 10px" >
{{-- Anexo do Projeto --}} {{-- Anexo do Projeto --}}
<div class="row justify-content-start"> <div class="row justify-content-start">
{{-- Arquivo --}} {{-- 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"> <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> <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" /> <input type="file" class="input-group-text" name="anexoProjeto" placeholder="nomeProjeto" accept="application/pdf" />
...@@ -131,6 +141,7 @@ ...@@ -131,6 +141,7 @@
@enderror @enderror
</div> </div>
@endif @endif
@endif
</div> </div>
</div> </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