@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.orderLog.title_singular') }}
@method('POST') @csrf
@if($errors->has('order'))
{{ $errors->first('order') }}
@endif {{ trans('cruds.orderLog.fields.order_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.orderLog.fields.status_helper') }}
@if($errors->has('datetime'))
{{ $errors->first('datetime') }}
@endif {{ trans('cruds.orderLog.fields.datetime_helper') }}
@if($errors->has('file'))
{{ $errors->first('file') }}
@endif {{ trans('cruds.orderLog.fields.file_helper') }}
@endsection @section('scripts') @endsection