{{ ucfirst($tipo) }}
{{-- Messagens da session --}} @include('partials.session-message') @if ($errors->any() || session('error'))
{{$errors->any() ? $errors->first() : session('error')}}
@endif
@if (isset($pessoa))
#
@endif

Dados Cadastrais

{{-- Empresa --}}
{{-- Nome --}}
@if ($errors->has('nome')) {{ $errors->first('nome') }} @endif
@if ($errors->has('cor')) {{ $errors->first('cor') }} @endif
{{-- Tipo --}} {{-- Razão social --}}
@if ($errors->has('razaosocial')) {{ $errors->first('razaosocial') }} @endif
@if (isset($tipo) && $tipo == 'R' || $tipo == 'Representante')
@endif
{{-- CPF / CNPJ --}}
@if ($errors->has('cpfcnpj')) {{ $errors->first('cpfcnpj') }} @endif
{{-- RG --}}
@if ($errors->has('rg')) {{ $errors->first('rg') }} @endif
{{-- Inscrição estadual --}}
@if ($errors->has('inscestadual')) {{ $errors->first('inscestadual') }} @endif
@if ($tipo != 'fornecedor' and $tipo != 'cliente' ) {{-- Data de nascimento --}}
@if ($errors->has('datanascimento')) {{ $errors->first('datanascimento') }} @endif
{{-- Estado civil --}}
@endif {{-- Descrição --}}
@if ($errors->has('descricao')) {{ $errors->first('descricao') }} @endif
{{-- Dados Financeiros --}}
@if ($errors->has('observacao')) {{ $errors->first('observacao') }} @endif

Informações de Contato

{{-- Responsável --}}
@if ($errors->has('responsavel')) {{ $errors->first('responsavel') }} @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
{{-- Website --}}
@if ($errors->has('celular')) {{ $errors->first('website') }} @endif
{{-- E-mail --}}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

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' => $pessoa ?? null])
@if(isset($pessoa))
@include('partials.upload', ['model' => $pessoa])
@endif
@push('js') @include('partials.upload-js') @endpush