@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.word.title_singular') }}
@csrf
@if($errors->has('english')) {{ $errors->first('english') }} @endif {{ trans('cruds.word.fields.english_helper') }}
@if($errors->has('language')) {{ $errors->first('language') }} @endif {{ trans('cruds.word.fields.language_helper') }}
@if($errors->has('image')) {{ $errors->first('image') }} @endif {{ trans('cruds.word.fields.image_helper') }}
@if($errors->has('sound')) {{ $errors->first('sound') }} @endif {{ trans('cruds.word.fields.sound_helper') }}
@if($errors->has('category')) {{ $errors->first('category') }} @endif {{ trans('cruds.word.fields.category_helper') }}
@if($errors->has('locked')) {{ $errors->first('locked') }} @endif {{ trans('cruds.word.fields.locked_helper') }}
@endsection