@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.product.title_singular') }}
@csrf
@if($errors->has('cover'))
{{ $errors->first('cover') }}
@endif {{ trans('cruds.product.fields.cover_helper') }}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{ trans('cruds.product.fields.image_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.product.fields.name_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.product.fields.description_helper') }}
@if($errors->has('features'))
{{ $errors->first('features') }}
@endif {{ trans('cruds.product.fields.features_helper') }}
@if($errors->has('specification'))
{{ $errors->first('specification') }}
@endif {{ trans('cruds.product.fields.specification_helper') }}
@if($errors->has('benefits'))
{{ $errors->first('benefits') }}
@endif {{ trans('cruds.product.fields.benefits_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.product.fields.status_helper') }}
@endsection @section('scripts') @endsection