@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
Edit Products
@csrf @method('put')
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@if ($errors->has('subcategory_id'))
{{ $errors->first('subcategory_id') }}
@endif
@if ($errors->has('product_name'))
{{ $errors->first('product_name') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if ($errors->has('product_details'))
{{ $errors->first('product_details') }}
@endif
Accepted formats: png, jpg, jpeg. Max file size 5Mb @if ($errors->has('product_image'))
{{ $errors->first('product_image') }}
@endif
@if($product->product_image != '') @endif
@if ($errors->has('s3_file_name'))
{{ $errors->first('s3_file_name') }}
@endif @if ($errors->has('s3_file_size'))
{{ $errors->first('s3_file_size') }}
@endif @if ($errors->has('s3_upload_key'))
{{ $errors->first('s3_upload_key') }}
@endif
@if ($errors->has('publish_date'))
{{ $errors->first('publish_date') }}
@endif
Back
@endsection @push('js') @endpush