Funcionário
{{-- Messagens da session --}} @include('partials.session-message') @if ($errors->any() || session('error'))
{{$errors->any() ? $errors->first() : session('error')}}
@endif
@if (isset($funcionario))
#
@endif

Dados Cadastrais

{{-- Tem Agenda --}}
temagenda ? 'checked' : '' }} name="temagenda" type="checkbox" role="switch" id="switchTemAgenda">
{{-- Empresa --}}
{{-- Nome --}}
@if ($errors->has('nome')) {{ $errors->first('nome') }} @endif
{{-- CPF --}}
@if ($errors->has('cpfcnpj')) {{ $errors->first('cpfcnpj') }} @endif
{{-- Data de nascimento --}}
@if ($errors->has('datanascimento')) {{ $errors->first('datanascimento') }} @endif
{{-- RG --}}
@if ($errors->has('rg')) {{ $errors->first('rg') }} @endif
{{-- Estado civil --}}
{{-- Nome do pai --}}
@if ($errors->has('nomepai')) {{ $errors->first('nomepai') }} @endif
{{-- Nome da mãe --}}
@if ($errors->has('nomemae')) {{ $errors->first('nomemae') }} @endif
{{-- Telefone Fixo --}}
@if ($errors->has('telefone')) {{ $errors->first('telefone') }} @endif
{{-- Telefone Celular --}}
@if ($errors->has('celular')) {{ $errors->first('celular') }} @endif
{{-- Telefone Celular2 --}}
@if ($errors->has('celular2')) {{ $errors->first('celular2') }} @endif

Informações Adicionais

{{-- Cargo --}}
@if ($errors->has('cargo')) {{ $errors->first('cargo') }} @endif
{{-- E-Social --}}
@if ($errors->has('cargo')) {{ $errors->first('esocial') }} @endif
{{-- Admissão --}}
@if ($errors->has('admissao')) {{ $errors->first('admissao') }} @endif
{{-- Motivo da admissão --}}
{{-- Demissão --}}
@if ($errors->has('demissao')) {{ $errors->first('demissao') }} @endif
{{-- Motivo Demissão --}}
{{-- Tipo --}}

Endereço

{{-- Cep --}}
@if ($errors->has('cep')) {{ $errors->first('cep') }} @endif
{{-- Endereço --}}
@if ($errors->has('endereco')) {{ $errors->first('endereco') }} @endif
{{-- Número --}}
@if ($errors->has('numero')) {{ $errors->first('numero') }} @endif
{{-- Complemento --}}
@if ($errors->has('complemento')) {{ $errors->first('complemento') }} @endif
{{-- Bairro --}}
@if ($errors->has('bairro')) {{ $errors->first('bairro') }} @endif
{{-- Cidade --}}
@if ($errors->has('cidade')) {{ $errors->first('cidade') }} @endif
{{-- Estado --}}
@if ($errors->has('estado')) {{ $errors->first('estado') }} @endif
@include('partials.status', ['model' => $funcionario ?? null])
@if(isset($funcionario))
@include('partials.upload', ['model' => $funcionario])
@endif
@push('js') @include('partials.upload-js') @endpush