@extends('painel-admin.menu') @section('title', 'Cliente DLL') @section('php') @stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif
@csrf

Cadastro do Cliente DLL


@if ($errors->has('cnpjCliente'))

{{ $errors->first('cnpjCliente') }}

@endif
@if ($errors->has('codUser'))

{{ $errors->first('codUser') }}

@endif
@if ($errors->has('codVendedor'))

{{ $errors->first('codVendedor') }}

@endif
@if ($errors->has('nameUser'))

{{ $errors->first('nameUser') }}

@endif
@if ($errors->has('loginAccess'))

{{ $errors->first('loginAccess') }}

@endif
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
@endsection