@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.commandSchedule.title_singular') }}
@csrf
@if($errors->has('command'))
{{ $errors->first('command') }}
@endif {{ trans('cruds.commandSchedule.fields.command_helper') }}
@if($errors->has('datetime'))
{{ $errors->first('datetime') }}
@endif {{ trans('cruds.commandSchedule.fields.datetime_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.commandSchedule.fields.status_helper') }}
@endsection