@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.product.price_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}.
@endif {{ trans('cruds.product.fields.title_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.product.fields.description_helper') }}
@if($errors->has('price'))
{{ $errors->first('price') }}
@endif {{ trans('cruds.product.fields.price_helper') }}
@endsection @section('scripts') @endsection