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
c78fdf22
Commit
c78fdf22
authored
Jun 23, 2021
by
José Rômulo
Browse files
Correções max RG e complemento
parent
8e0d6f4c
Changes
4
Show whitespace changes
Inline
Side-by-side
resources/views/evento/formulario/participantes.blade.php
View file @
c78fdf22
...
...
@@ -63,7 +63,7 @@
</div>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'RG'])
<input
type=
"number"
class=
"form-control"
min=
"1"
maxlength=
"
8
"
name=
"rg[]"
placeholder=
"RG"
required
/>
<input
type=
"number"
class=
"form-control"
min=
"1"
maxlength=
"
12
"
name=
"rg[]"
placeholder=
"RG"
required
/>
@endcomponent
</div>
<div
class=
"col-6"
>
...
...
@@ -109,8 +109,8 @@
@endcomponent
</div>
<div
class=
"col-12"
>
@component('componentes.input', ['label' => 'Complemento'])
<input
type=
"text"
class=
"form-control"
name=
"complemento[]"
pattern=
"[A-Za-z]+"
placeholder=
"Complemento"
required
/>
@component('componentes.input', ['label' => 'Complemento'
, 'obrigatorio' => ''
])
<input
type=
"text"
class=
"form-control"
name=
"complemento[]"
pattern=
"[A-Za-z]+"
placeholder=
"Complemento"
/>
@endcomponent
</div>
<div
class=
"col-md-12"
><h5>
Dados do curso
</h5></div>
...
...
resources/views/evento/submeterTrabalho.blade.php
View file @
c78fdf22
...
...
@@ -281,7 +281,7 @@
},
'rg[]'
:
{
required
:
true
,
maxlength
:
8
,
maxlength
:
12
,
},
agree
:
"required"
...
...
resources/views/projeto/editar.blade.php
View file @
c78fdf22
...
...
@@ -285,7 +285,7 @@
},
'rg[]'
:
{
required
:
true
,
maxlength
:
8
,
maxlength
:
12
,
},
agree
:
"required"
...
...
resources/views/projeto/formulario/participantes.blade.php
View file @
c78fdf22
...
...
@@ -65,7 +65,7 @@
</div>
<div
class=
"col-6"
>
@component('componentes.input', ['label' => 'RG'])
<input
type=
"number"
class=
"form-control"
value=
"{{ $p->rg }}"
min=
"1"
maxlength=
"
8
"
name=
"rg[]"
placeholder=
"RG"
required
/>
<input
type=
"number"
class=
"form-control"
value=
"{{ $p->rg }}"
min=
"1"
maxlength=
"
12
"
name=
"rg[]"
placeholder=
"RG"
required
/>
@endcomponent
</div>
<div
class=
"col-6"
>
...
...
@@ -111,8 +111,8 @@
@endcomponent
</div>
<div
class=
"col-12"
>
@component('componentes.input', ['label' => 'Complemento'])
<input
type=
"text"
class=
"form-control"
value=
"{{ $p->user->endereco->complemento }}"
name=
"complemento[]"
pattern=
"[A-Za-z]+"
placeholder=
"Complemento"
required
/>
@component('componentes.input', ['label' => 'Complemento'
, 'obrigatorio' => ''
])
<input
type=
"text"
class=
"form-control"
value=
"{{ $p->user->endereco->complemento }}"
name=
"complemento[]"
pattern=
"[A-Za-z]+"
placeholder=
"Complemento"
/>
@endcomponent
</div>
<div
class=
"col-md-12"
><h5>
Dados do curso
</h5></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