@extends('back.layouts.layout') @section('title','Edit Product') @section('content-header')

Edit Product

@endsection @section('content')
@csrf @method('put')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('category_id')){{ ($errors->first('category_id')) ? old('name') : $product->name }}@endif
@if ($errors->has('featured')){{ $errors->first('featured') }}@endif
@if ($errors->has('description')){{ $errors->first('description') }}@endif
@if ($errors->has('excerpt')){{ $errors->first('excerpt') }}@endif
Image
@if($product->image!="")
@endif
@if ($errors->has('image')){{ $errors->first('image') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection