@extends('dashbord.layouts.master') @section('toolbar')

{{trans('products.create')}}

@endsection @section('content')
@if ($errors->any())
{{trans('dash_site.please_fix')}}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{trans('products.main_image')}}

Set product main image. Only *.png, *.jpg and *.jpeg image files are accepted
@error('main_image')
{{ $message }}
@enderror

{{trans('products.basic_info')}}

@error('name')
{{ $message }}
@enderror
@error('category_id')
{{ $message }}
@enderror

{{trans('products.pricing')}}

{{trans('products.digital_help')}}
{{trans('products.physical_help')}}

{{trans('products.discount')}}

{{trans('products.stock')}}

{{trans('products.stock_help')}}

{{trans('products.files')}}

{{trans('products.files_help')}}

{{trans('products.status')}}

@endsection