@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.productSnapshot.title_singular') }}
@csrf
@if($errors->has('product'))
{{ $errors->first('product') }}
@endif {{ trans('cruds.productSnapshot.fields.product_helper') }}
@if($errors->has('attributes'))
{{ $errors->first('attributes') }}
@endif {{ trans('cruds.productSnapshot.fields.attributes_helper') }}
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.productSnapshot.fields.date_helper') }}
@endsection