@extends('layouts.escola.default') @section('content')

Inscrição para o Parlamento Universitário

Preencha o formulário abaixo para participar do programa

@if (session('status-success')) @endif @if ($errors->any()) @endif @if (session('status-error')) @endif
{!! Form::open([ 'route' => ['escola.parlamento.save'], 'class' => 'registration-form', 'id' => 'inscricaoForm', ]) !!}

Informações Pessoais

{{ Form::label('nome', __('labels.nome')) }} {{ Form::text('nome', null, ['class' => 'form-control ' . ($errors->has('nome') ? 'is-invalid' : ''), 'maxlength' => 190, 'placeholder' => 'Seu nome completo']) }} @if ($errors->has('nome'))
{{ $errors->first('nome') }}
@endif
{{ Form::label('data_nascimento', __('Data de Nascimento')) }} {{ Form::date('data_nascimento', null, ['class' => 'form-control ' . ($errors->has('data_nascimento') ? 'is-invalid' : '')]) }} @if ($errors->has('data_nascimento'))
{{ $errors->first('data_nascimento') }}
@endif
{{ Form::label('cpf', __('CPF')) }} {{ Form::text('cpf', null, ['class' => 'form-control ' . ($errors->has('cpf') ? 'is-invalid' : ''), 'maxlength' => 14, 'placeholder' => '000.000.000-00']) }} @if ($errors->has('cpf'))
{{ $errors->first('cpf') }}
@endif
{{ Form::label('email', __('labels.email')) }} {{ Form::email('email', null, ['class' => 'form-control ' . ($errors->has('email') ? 'is-invalid' : ''), 'maxlength' => 190, 'placeholder' => 'seu.email@exemplo.com']) }} @if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::label('telefone', __('labels.celular')) }} {{ Form::text('telefone', null, ['class' => 'form-control ' . ($errors->has('telefone') ? 'is-invalid' : ''), 'maxlength' => 190, 'placeholder' => '(XX) XXXXX-XXXX']) }} @if ($errors->has('telefone'))
{{ $errors->first('telefone') }}
@endif
{{ Form::label('pcd', __('Pessoa com Deficiência (PCD)')) }} {{ Form::select('pcd', ['' => '-- Selecione --', '1' => 'Sim', '0' => 'Não'], null, ['class' => 'form-control ' . ($errors->has('pcd') ? 'is-invalid' : ''), 'id' => 'pcd']) }} @if ($errors->has('pcd'))
{{ $errors->first('pcd') }}
@endif

Informações Acadêmicas

{{ Form::label('cidade_instituicao', __('Cidade da Instituição')) }} @if ($errors->has('cidade_instituicao'))
{{ $errors->first('cidade_instituicao') }}
@endif
{{ Form::label('instituicao', __('labels.instituicao')) }} {{ Form::text('instituicao', null, ['class' => 'form-control ' . ($errors->has('instituicao') ? 'is-invalid' : ''), 'placeholder' => 'Nome da sua instituição de ensino']) }} @if ($errors->has('instituicao'))
{{ $errors->first('instituicao') }}
@endif
{{ Form::label('curso', __('labels.curso')) }} {{ Form::text('curso', null, ['class' => 'form-control ' . ($errors->has('curso') ? 'is-invalid' : ''), 'maxlength' => 190, 'placeholder' => 'Seu curso de graduação']) }} @if ($errors->has('curso'))
{{ $errors->first('curso') }}
@endif
{{ Form::label('periodo', __('labels.periodo')) }} {{ Form::text('periodo', null, ['class' => 'form-control ' . ($errors->has('periodo') ? 'is-invalid' : ''), 'maxlength' => 190, 'placeholder' => 'Período que está cursando']) }} @if ($errors->has('periodo'))
{{ $errors->first('periodo') }}
@endif
{!! Form::close() !!}
@endsection