Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
67c9031e
Commit
67c9031e
authored
Jul 14, 2022
by
GuilhermeGz
Browse files
Adicionado campo para recebimento de documento extra nas telas de propostas
parent
279e0eac
Changes
2
Hide whitespace changes
Inline
Side-by-side
resources/views/evento/formulario/anexos.blade.php
View file @
67c9031e
...
...
@@ -115,6 +115,17 @@
</div>
</div>
@endif
@if($edital->nome_docExtra != null)
<div
class=
"form-group col-md-6"
>
<label
title=
"{{$edital->nome_docExtra}}"
for=
"anexo_docExtra"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{$edital->nome_docExtra}}: @if($edital->obrigatoriedade_docExtra == true)
<span
style=
"color: red; font-weight:bold"
>
*
</span>
@endif
</label>
<input
type=
"file"
class=
"input-group-text"
name=
"anexo_docExtra"
accept=
".pdf,.docx,.doc,.zip "
@
if
($
edital-
>
obrigatoriedade_docExtra == true) required @endif/>
@error('anexo_docExtra')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
@endif
</div>
</div>
</div>
...
...
resources/views/projeto/editaFormulario/anexos.blade.php
View file @
67c9031e
...
...
@@ -159,6 +159,22 @@
</div>
</div>
@endif
@if($edital->nome_docExtra != null)
<div
class=
"form-group col-md-6"
style=
"margin-top: 10px"
>
<label
for=
"anexo_docExtra"
class=
"col-form-label font-tam"
style=
"font-weight: bold"
>
{{$edital->nome_docExtra}}:@if($edital->obrigatoriedade_docExtra == true)
<span
style=
"color: red; font-weight:bold"
>
*
</span>
@endif
</label>
@if($projeto->anexo_docExtra != null)
<a
href=
"{{ route('baixar.anexo.docExtra', ['id' => $projeto->id]) }}"
><i
class=
"fas fa-file-pdf fa-2x"
></i></a>
@else
<i
class=
"fas fa-times-circle fa-2x"
></i>
@endif
<input
type=
"file"
class=
"input-group-text"
name=
"anexo_docExtra"
placeholder=
"{{$edital->nome_docExtra}}"
accept=
".pdf,.docx,.doc,.zip"
@
if
($
edital-
>
obrigatoriedade_docExtra == true) required @endif/>
@error('anexo_docExtra')
<span
class=
"invalid-feedback"
role=
"alert"
style=
"overflow: visible; display:block"
>
<strong>
{{ $message }}
</strong>
</span>
@enderror
</div>
@endif
</div>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment