@extends('layouts.app') @section('content')
{{ __('Add New Product') }}
@csrf
{{ __('Short Description') }}
*
{{ old('short_description') }}
@error('short_description')
{{ $message }}
@enderror
{{ __('Description') }}
*
{!! old('description') !!}
@error('description')
{{ $message }}
@enderror
{{ __('Generale Information') }}
{{ __('Select Category') }}
*
{{ __('Select Category') }}
@foreach ($categories as $category)
{{ $category->name }}
@endforeach
@error('category')
{{ $message }}
@enderror
{{ __('Select Sub Categories') }}
{{ __('Select Sub Category') }}
@error('sub_category')
{{ $message }}
@enderror
{{ __('Select Brand') }}
@foreach ($brands as $brand)
{{ $brand->name }}
@endforeach
{{ __('Select Color') }}
{{ __('Select Color') }}
@foreach ($colors as $color)
{{ $color->name }}
@endforeach
{{ __('Select Unit') }}
@foreach ($units as $unit)
{{ $unit->name }}
@endforeach
{{ __('Select Size') }}
{{ __('Select Size') }}
@foreach ($sizes as $size)
{{ $size->name }}
@endforeach
{{ __('Product SKU') }}
*
{{ __('Generate Code') }}
@error('code')
{{ $message }}
@enderror
{{ __('Price Information') }}
@foreach ($taxs as $tax)
{{ $tax->name }} ({{ $tax->percentage }}%)
@endforeach
{{ __('Color wise extra price') }}
{{ __('Name') }}
{{ __('Extra Price') }}
{{ __('Action') }}
{{ __('Size wise extra price') }}
{{ __('Size') }}
{{ __('Extra Price') }}
{{ __('Action') }}
{{ __('Thumbnail') }}
(Ratio 1:1 (500 x 500 px))
*
@error('thumbnail')
{{ $message }}
@enderror
{{ __('Additional Thumbnail') }}
(Ratio 1:1 (500 x 500 px))
*
@error('additionThumbnail')
{{ $message }}
@enderror
{{ __('Reset') }}
{{ __('Submit') }}
@endsection @push('css') @endpush @push('scripts') @endpush