@extends('layouts.app') @section('content')
Agregar Proveedor
@csrf
{{-- Nombre del proveedor --}}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{-- RFC --}}
@error('rfc')
{{ $message }}
@enderror
{{-- Domicilio Fiscal --}}
@if ($errors->has('fiscal_address'))
{{ $errors->first('fiscal_address') }}
@endif
{{-- Correo Electrónico --}}
{{-- Teléfono --}}
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
{{-- WhatsApp --}}
@error('whatsapp')
{{ $message }}
@enderror
{{-- Tipo de proveedor --}}
@if ($errors->has('provider_type'))
{{ $errors->first('provider_type') }}
@endif
{{-- Método de pago --}}
@if ($errors->has('payment_method'))
{{ $errors->first('payment_method') }}
@endif
{{-- Constancia de situación fiscal --}}
@if ($errors->has('has_tax_certificate_file'))
{{ $errors->first('has_tax_certificate_file') }}
@endif
Nota: si hay errores en el formulario, deberás volver a subir este archivo.

Datos Bancarios
{{-- Banco --}}
@if ($errors->has('bank_id'))
{{ $errors->first('bank_id') }}
@endif
{{-- Número de cuenta --}}
@if ($errors->has('account_number'))
{{ $errors->first('account_number') }}
@endif
{{-- CLABE --}}
@if ($errors->has('clabe'))
{{ $errors->first('clabe') }}
@endif
{{-- Notas adicionales --}}
{{ __('fields.buttons_volver_listado') }}
@push('scripts') @endpush @endsection