@extends('default.layout') @section('content')

Cadastrar Empresa

@csrf
@if($errors->has('cpf_cnpj'))
{{ $errors->first('cpf_cnpj') }}
@endif
@if($errors->has('nome'))
{{ $errors->first('nome') }}
@endif
@if($errors->has('nome_fantasia'))
{{ $errors->first('nome_fantasia') }}
@endif
@if($errors->has('rua'))
{{ $errors->first('rua') }}
@endif
@if($errors->has('numero'))
{{ $errors->first('numero') }}
@endif
@if($errors->has('bairro'))
{{ $errors->first('bairro') }}
@endif
@if($errors->has('cidade'))
{{ $errors->first('cidade') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('telefone'))
{{ $errors->first('telefone') }}
@endif

@if($errors->has('login'))
{{ $errors->first('login') }}
@endif
@if($errors->has('senha'))
{{ $errors->first('senha') }}
@endif
@if($errors->has('nome_usuario'))
{{ $errors->first('nome_usuario') }}
@endif
@if(sizeof($perfis) > 0)
@endif @foreach($menu as $m)
@foreach($m['subs'] as $s) @endforeach
@endforeach
@section('javascript') @endsection @endsection