@extends('layouts.app') @section('content')
Edit Specification for: {{ $product->name }}

@csrf @method('PUT')
@error('attribute_name')
{{ $message }}
@enderror
@error('value')
{{ $message }}
@enderror
@error('unit')
{{ $message }}
@enderror
@error('product_id')
{{ $message }}
@enderror
{{--
Current Specification Details

Attribute:

{{ $specification->attribute_name }}

Value:

{{ $specification->value }}

Unit:

{{ $specification->unit ?: 'N/A' }}

Created:

{{ $specification->created_at->format('M d, Y H:i A') }}

Last Updated:

{{ $specification->updated_at->format('M d, Y H:i A') }}

--}}
@endsection