@extends('layouts.admin') @section('content')

{{ __('Create Product') }}

@if ($errors->any())

{{ __('Validation Error') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{ __('Product Name (Multilingual)') }}

{{ __('Traditional Chinese') }} *
{{ __('English') }}
{{ __('Japanese') }}

{{ __('Basic Specifications') }}

@foreach($categories as $category) @endforeach

{{ __('Pricing Information') }}

{{ __('Channel Limits') }}

{{ __('Feature Toggles') }}

{{ __('Cancel') }}
@push('styles') @endpush @endsection @section('scripts') @endsection