@extends('layouts.app') @section('content') Editar Producto @csrf @method('PUT') Nombre del producto: Código 1: Código 2: Descripción: {{ $producto->descripcion }} Precio Regular: Precio en Oferta: Marca: Foto: @if($producto->foto) @endif Ubicación: @foreach($ubicaciones as $ubicacion) ubicacion_id == $ubicacion->id ? 'selected' : '' }}> {{ $ubicacion->nombre }} @endforeach Cantidad: Estado: estado === 'activo' ? 'selected' : '' }}>Activo estado === 'inactivo' ? 'selected' : '' }}>Inactivo Actualizar Producto @endsection