@extends('layouts.app') @section('title', 'Edit Product') @section('page-title', 'Edit Product') @section('sidebar') @include('partials.vendor-sidebar') @endsection @section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @method('PUT')
@endsection