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

{{isset($forn) ? 'Editar' : 'Novo'}} Fornecedor

@csrf
@if($errors->has('cpf_cnpj'))
{{ $errors->first('cpf_cnpj') }}
@endif
@if($errors->has('razao_social'))
{{ $errors->first('razao_social') }}
@endif
@if($errors->has('nome_fantasia'))
{{ $errors->first('nome_fantasia') }}
@endif
@if($errors->has('ie_rg'))
{{ $errors->first('ie_rg') }}
@endif
@if($errors->has('contribuinte'))
{{ $errors->first('contribuinte') }}
@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('cep'))
{{ $errors->first('cep') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('cidade'))
{{ $errors->first('cidade') }}
@endif
@if($errors->has('telefone'))
{{ $errors->first('telefone') }}
@endif
@if($errors->has('celular'))
{{ $errors->first('celular') }}
@endif
@if($errors->has('pix'))
{{ $errors->first('pix') }}
@endif
@if($errors->has('tipo_pix'))
{{ $errors->first('tipo_pix') }}
@endif
@endsection @section('javascript') @endsection