@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
@csrf @method('put')
Edit Products
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('default_price'))
{{ $errors->first('default_price') }}
@endif
@if ($errors->has('old_price'))
{{ $errors->first('old_price') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Drag your file or
{{--
Accepted formats: png, jpg, jpeg. Max file size 5Mb @if ($errors->has('product_image'))
{{ $errors->first('product_image') }}
@endif
@if($product->product_image == '' || !File::exists('backend/assets/images/product_images/thumbnail/'.$product->product_image)) @else {{$product->product_name}} @endif
--}} Back
Add Attribute
@include('admin.product._attribute')
Back
@endsection @push('js') @endpush @push('js') @endpush