@extends('admin.layouts.app') @push('css') {{-- --}} {{-- --}} @endpush @section('content')

Editar Pickup

@csrf @method('PUT')
Configuración de Envíos y Pickup
Métodos de Envío Habilitados

Controlá qué opciones de envío se muestran al cliente en el checkout. Debe quedar habilitado al menos uno.

pickup_enabled ?? 1) ? 'checked' : '' }}>
home_delivery_enabled ?? 1) ? 'checked' : '' }}>
@if ($errors->has('pickup_enabled'))
{{ $errors->first('pickup_enabled') }}
@endif
Aviso del Checkout

Mensaje que aparece como banner destacado al inicio del checkout. Útil para instrucciones de retiro, aclaraciones importantes o datos de contacto.

Dejá el campo vacío si no querés mostrar banner. Admite saltos de línea. @if ($errors->has('checkout_notice'))
{{ $errors->first('checkout_notice') }}
@endif
Modo de Cálculo de Envíos
Seleccione cómo desea manejar los cálculos de envío en el checkout
Este texto aparecerá cuando el cliente seleccione envío a domicilio en modo simple
shipping_simple_require_fields ?? 1) ? 'checked' : '' }}>
Datos de Pickup
@if ($errors->has('pickup_country'))
{{ $errors->first('pickup_country') }}
@endif
@if ($errors->has('pickup_state'))
{{ $errors->first('pickup_state') }}
@endif
@if ($errors->has('pickup_city'))
{{ $errors->first('pickup_city') }}
@endif
@if ($errors->has('pickup_postal_code'))
{{ $errors->first('pickup_postal_code') }}
@endif
@if ($errors->has('pickup_street'))
{{ $errors->first('pickup_street') }}
@endif
@if ($errors->has('pickup_number'))
{{ $errors->first('pickup_number') }}
@endif
@if ($errors->has('pickup_phone'))
{{ $errors->first('pickup_phone') }}
@endif
Estas instrucciones aparecerán en el checkout cuando el cliente seleccione "Retiro en Local" @if ($errors->has('pickup_instructions'))
{{ $errors->first('pickup_instructions') }}
@endif
Estas instrucciones aparecerán en el checkout cuando el cliente seleccione "Envío a Domicilio" @if ($errors->has('delivery_instructions'))
{{ $errors->first('delivery_instructions') }}
@endif
Cancelar
@endsection @section('customJs') @endsection