@extends('backends.layouts.master_layout') @section('title',"Products") @section('page_heading','Products') @section('content')

Add Product

@csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('sort_by'))
{{ $errors->first('weight') }}
@endif
{{-- @if($errors->has('sub_title'))--}} {{--
{{ $errors->first('sub_title') }}
--}} {{-- @endif--}}
@if($errors->has('cost_price'))
{{ $errors->first('cost_price') }}
@endif
@if($errors->has('sales_price'))
{{ $errors->first('sales_price') }}
@endif
@if($errors->has('brand_name'))
{{ $errors->first('brand_name') }}
@endif
@if($errors->has('sort_by'))
{{ $errors->first('sort_by') }}
@endif
@if($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
Cancel
@endsection