@extends('../layouts/partials/header') @section('content')

@if (session('success')) @endif @if ($errors->any()) @endif
@csrf
{{-- ===== TAB 1: DATOS DEL TITULAR ===== --}}

Los campos marcados con * son obligatorios.

@if(old('id_cliente')) {{ $clientes->firstWhere('id', old('id_cliente'))?->nombre_completo }} @endif
@error('id_cliente')
{{ $message }}
@enderror
Cancelar
{{-- /tab-content --}}
{{-- /card-body --}}
{{-- /card --}}
@php $clientesJs = $clientes->map(fn($c) => [ 'id' => $c->id, 'nombre' => $c->nombre_completo, 'rfc' => $c->ip_rfc ?? '', ]); @endphp @endsection @extends('../layouts/partials/footer')