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
931b953d
Commit
931b953d
authored
Jul 20, 2022
by
S-Nathalia
Browse files
adicação de pibic-af
parent
ef3d4eec
Changes
2
Show whitespace changes
Inline
Side-by-side
resources/views/evento/criarEvento.blade.php
View file @
931b953d
...
...
@@ -31,6 +31,7 @@
<
select
id
=
"tipo"
type
=
"text"
class
=
"form-control @error('tipo') is-invalid @enderror"
name
=
"tipo"
value
=
"{{ old('tipo') }}"
required
>
<
option
@
if
(
old
(
'tipo'
)
==
'PIBIC'
)
selected
@
endif
value
=
"PIBIC"
>
PIBIC
</
option
>
<
option
@
if
(
old
(
'tipo'
)
==
'PIBIC-EM'
)
selected
@
endif
value
=
"PIBIC-EM"
>
PIBIC
-
EM
</
option
>
<
option
@
if
(
old
(
'tipo'
)
==
'PIBIC-AF'
)
selected
@
endif
value
=
"PIBIC-AF"
>
PIBIC
-
AF
</
option
>
<
option
@
if
(
old
(
'tipo'
)
==
'PIBITI'
)
selected
@
endif
value
=
"PIBITI"
>
PIBITI
</
option
>
<
option
@
if
(
old
(
'tipo'
)
==
'PIBEX'
)
selected
@
endif
value
=
"PIBEX"
>
PIBEX
</
option
>
</
select
>
...
...
resources/views/evento/editarEvento.blade.php
View file @
931b953d
...
...
@@ -33,6 +33,7 @@
<
select
id
=
"tipo"
type
=
"text"
class
=
"form-control @error('tipo') is-invalid @enderror"
name
=
"tipo"
required
>
<
option
value
=
"PIBIC"
{{
$evento
->
tipo
==
"PIBIC"
?
'selected'
:
''
}}
>
PIBIC
</
option
>
<
option
value
=
"PIBIC-EM"
{{
$evento
->
tipo
==
"PIBIC-EM"
?
'selected'
:
''
}}
>
PIBIC
-
EM
</
option
>
<
option
value
=
"PIBIC-AF"
{{
$evento
->
tipo
==
"PIBIC-AF"
?
'selected'
:
''
}}
>
PIBIC
-
AF
</
option
>
<
option
value
=
"PIBITI"
{{
$evento
->
tipo
==
"PIBITI"
?
'selected'
:
''
}}
>
PIBITI
</
option
>
<
option
value
=
"PIBEX"
{{
$evento
->
tipo
==
"PIBEX"
?
'selected'
:
''
}}
>
PIBEX
</
option
>
</
select
>
...
...
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