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

Add Product

@endsection @section('content')
@csrf @method('post')
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('category_id')){{ $errors->first('category_id') }}@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 ($errors->has('image')){{ $errors->first('image') }} @endif
Status
@if ($errors->has('status')){{ $errors->first('status') }} @endif
Publish
@endsection