Gerenciamento de Empresas
{{-- Messagens da session --}} @include('partials.session-message') @if ($errors->any() || session('error'))
{{$errors->any() ? $errors->first() : session('error')}}
@endif
@if (isset($empresa))
#
@endif

Dados Cadastrais

{{-- Sigla --}}
@if ($errors->has('sigla')) {{ $errors->first('sigla') }} @endif
{{-- Razão social --}}
@if ($errors->has('razaosocial')) {{ $errors->first('razaosocial') }} @endif
{{-- CNPJ --}}
@if ($errors->has('cnpj')) {{ $errors->first('cnpj') }} @endif
{{-- Nome Fantasia --}}
@if ($errors->has('nomefantasia')) {{ $errors->first('nomefantasia') }} @endif
{{-- Inscrição estadual --}}
@if ($errors->has('inscestadual')) {{ $errors->first('inscestadual') }} @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' => $empresa ?? null])
@if(isset($empresa))
@include('partials.upload', ['model' => $empresa])
@endif
@push('js') @include('partials.upload-js') @endpush