@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.productCategory.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.productCategory.fields.name_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.productCategory.fields.description_helper') }}
@if($errors->has('photo')) {{ $errors->first('photo') }} @endif {{ trans('cruds.productCategory.fields.photo_helper') }}
@endsection @section('scripts') @endsection