@extends('layouts.app')
@section('titulo', isset($registro) ? 'Editar Oferta' : 'Nueva Oferta')
@section('contenido')
{{-- =========================================================
ENCABEZADO
========================================================== --}}
←
{{ isset($registro) ? 'Editar oferta' : 'Nueva oferta' }}
Configura una promoción para el POS.
{{-- ERRORES --}}
@if($errors->any())
Hay errores en el formulario:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{-- =========================================================
FORM
========================================================== --}}
@endsection