@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.feeding.title_singular') }}
@csrf
@if($errors->has('feeder'))
{{ $errors->first('feeder') }}
@endif {{ trans('cruds.feeding.fields.feeder_helper') }}
@if($errors->has('duration'))
{{ $errors->first('duration') }}
@endif {{ trans('cruds.feeding.fields.duration_helper') }}
@if($errors->has('weight'))
{{ $errors->first('weight') }}
@endif {{ trans('cruds.feeding.fields.weight_helper') }}
@if($errors->has('timestamp'))
{{ $errors->first('timestamp') }}
@endif {{ trans('cruds.feeding.fields.timestamp_helper') }}
@endsection