@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('global.product.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif

{{ trans('global.product.fields.name_helper') }}

@if($errors->has('description')) {{ $errors->first('description') }} @endif

{{ trans('global.product.fields.description_helper') }}

@if($errors->has('price')) {{ $errors->first('price') }} @endif

{{ trans('global.product.fields.price_helper') }}

@endsection