@push('styles') @endpush
@if($firstRegisterCouponBanner && $this->currentStepComputed <= 4) @php $descuentoTexto = $firstRegisterCouponBanner['tipo_descuento'] === 'porcentaje' ? rtrim(rtrim(number_format($firstRegisterCouponBanner['valor_descuento'], 2, '.', ''), '0'), '.') . '%' : '$' . number_format($firstRegisterCouponBanner['valor_descuento'], 2); $textoBanner = $firstRegisterCouponBanner['texto_banner'] ?: ('Ahorrate en ' . $descuentoTexto . ' 🔥 🤙 Código: ' . $firstRegisterCouponBanner['codigo']); @endphp
{{ $textoBanner }}
@endif
@foreach ($steps as $k => $stepView) @if(intval($this->currentStepComputed) == intval($k)) @if($stepView) @include("customer.{$stepView}") @endif @endif @endforeach @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif