@include('partials.styles')
@include('partials.sidebar') @include('partials.header')
Edit Product
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $err)
{{ $err }}
@endforeach
@endif
@csrf @method('PUT')
Category *
-- Select Category --
@foreach($categories as $cat)
category_id == $cat->id ? 'selected' : '' }}> {{ $cat->name }}
@endforeach
Select Role *
-- Select Role --
@foreach($roles as $role)
role == $role->name ? 'selected' : '' }}> {{ $role->name }}
@endforeach
Product Name *
Price (₹) *
Stock
Description
{{ old('description', $product->description) }}
Change Image
Leave blank to keep existing image.
Current
Back
Update
@include('partials.scripts')