@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Product Form') {{-- vendor style --}} @section('vendor-style') @endsection {{-- page style --}} @section('page-style') @endsection {{-- page content --}} @section('content')

Product Create

{{-- {{dd($errors)}} --}}
@csrf @foreach ($merchantClasses as $class) @endforeach
Model *
@if ($errors->has('model'))
{{ $errors->first('model') }}
@endif
Normal Price * {{-- --}}
MMK
@if ($errors->has('normal_price'))
{{ $errors->first('normal_price') }}
@endif
Discounted Price {{-- --}}
MMK
@if ($errors->has('discounted_price'))
{{ $errors->first('discounted_price') }}
@endif
Quantity *
@if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
Description *
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Choose your category *
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
{{ $class->name }} Price
Choose your usage area *
@if ($errors->has('usage_area_id'))
{{ $errors->first('usage_area_id') }}
@endif
Is Best Deal *

@if ($errors->has('is_bestdeal'))
{{ $errors->first('is_bestdeal') }}
@endif
Product Images *
{{-- --}} @if ($errors->has('images'))
{{ $errors->first('images') }}
@endif
Feature Product
Banner Image
@if ($errors->has('description'))
{{ $errors->first('banner_description') }}
@endif
Cancel
@endsection {{-- vendor script --}} @section('vendor-script') @endsection {{-- page script --}} @section('page-script') @endsection