@extends('layouts.app_admin') @section('content') Dashboard > Product List > Add Product {{ csrf_field() }} Product Name @if ($errors->has('product_name')) {{ $errors->first('product_name') }} @endif Select Category Select Category @foreach($category as $value) {{ ucfirst($value->name) }} @endforeach Select child Category Select Sub Category @foreach($sub_category as $value) {{ ucfirst($value->name) }} @endforeach Available Quantity @if ($errors->has('available_quantity')) {{ $errors->first('available_quantity') }} @endif Product Current Price (INR) @if ($errors->has('product_current_price_inr')) {{ $errors->first('product_current_price_inr') }} @endif Product Previous Price (INR) @if ($errors->has('product_previous_price_inr')) {{ $errors->first('product_previous_price_inr') }} @endif Product Current Price (USD) @if ($errors->has('product_current_price_usd')) {{ $errors->first('product_current_price_usd') }} @endif Product Previous Price (USD) @if ($errors->has('product_previous_price_usd')) {{ $errors->first('product_previous_price_usd') }} @endif Product Description {{ old('product_description') }} @if ($errors->has('product_description')) {{ $errors->first('product_description') }} @endif Product Buy/Return Policy {{ old('return_policy') }} @if ($errors->has('return_policy')) {{ $errors->first('return_policy') }} @endif Youtube Video URL Skin Type Skin Problem* Feture Image Browse Product Image Browse @if ($errors->has('product_image')) {{ $errors->first('brand_image') }} @endif New arrivals Yes No Status* Select Status Active Inactive Force Offer Status* Select Active Inactive Add Cancel @endsection