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

Cadastrar Representante

@csrf
@if($errors->has('cpf_cnpj'))
{{ $errors->first('cpf_cnpj') }}
@endif
@if($errors->has('nome'))
{{ $errors->first('nome') }}
@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($errors->has('empresa'))
{{ $errors->first('empresa') }}
@endif
@if($errors->has('comissao'))
{{ $errors->first('comissao') }}
@endif
@if($errors->has('limite_cadastros'))
{{ $errors->first('limite_cadastros') }}
@endif
@endsection @section('javascript') @endsection