@extends('_partials.master') @section('page_title', 'Edit Product') @section('page_heading', 'Edit Product') @section('page_styles') @endsection @section('content')

{{$product->name}}

@csrf

Tags

@csrf
    @foreach($productTags as $productTag)
  • {{$productTag->name}}
  • @endforeach
isGlobalStock ? '' : 'disabled' }} required="" onkeypress="return event.keyCode === 8 || event.charCode >= 48 && event.charCode <= 57">
@stop @push('page_scripts') @endpush