{!! Form::label('nome', trans('rgf.nome'), ['class' => 'control-label']) !!}
{!! Form::text('nome', null, ['class' => 'form-control', 'required' => 'required','placeholder'=>'nome']) !!} {!! $errors->first('nome', '

:message

') !!}
{!! Form::label('cpf', 'CPF', ['class' => 'control-label']) !!}
{!! Form::text('cpf', null, ['class' => 'form-control','placeholder'=>'000.000.000-00', "maxlength"=>"14","onkeypress"=>"formatar('###.###.###-##', this);return SomenteNumero(event)"]) !!} {!! $errors->first('cpf', '

:message

') !!}
{!! Form::label('status', trans('rgf.status'), ['class' => 'control-label']) !!}
{!! Form::select('status', $status = array('Ativo'=>'Ativo','Bloqueado'=>'Bloqueado'), null, ['class' => 'form-control select2', 'required' => 'required']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::label('data_inicial', 'Data Inicial', ['class' => 'control-label']) !!}
{!! Form::text('data_inicial', null, ['class' => 'form-control date-picker', 'placeholder'=>'00/00/0000', "maxlength"=>"10", "onkeypress"=>"formatar('##/##/####', this);return SomenteNumero(event)"]) !!} {!! $errors->first('data_inicial', '

:message

') !!}
{!! Form::label('data_final', 'Data Final', ['class' => 'control-label']) !!}
{!! Form::text('data_final', null, ['class' => 'form-control date-picker', 'placeholder'=>'00/00/0000', "maxlength"=>"10", "onkeypress"=>"formatar('##/##/####', this);return SomenteNumero(event)"]) !!} {!! $errors->first('data_final', '

:message

') !!}
{!! Form::label('arquivo', trans('rgf.arquivo')) !!}
 
Selecione o Arquivo Mudar {!! Form::file('image') !!} {!! Form::hidden('arquivo', null) !!} Remover
{!! $errors->first('logo', '

:message

') !!}