@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.telemetry.title_singular') }}
@csrf
@if($errors->has('d'))
{{ $errors->first('d') }}
@endif {{ trans('cruds.telemetry.fields.d_helper') }}
@if($errors->has('v'))
{{ $errors->first('v') }}
@endif {{ trans('cruds.telemetry.fields.v_helper') }}
@if($errors->has('c'))
{{ $errors->first('c') }}
@endif {{ trans('cruds.telemetry.fields.c_helper') }}
@if($errors->has('p'))
{{ $errors->first('p') }}
@endif {{ trans('cruds.telemetry.fields.p_helper') }}
@if($errors->has('ts'))
{{ $errors->first('ts') }}
@endif {{ trans('cruds.telemetry.fields.ts_helper') }}
@if($errors->has('l'))
{{ $errors->first('l') }}
@endif {{ trans('cruds.telemetry.fields.l_helper') }}
@if($errors->has('ln'))
{{ $errors->first('ln') }}
@endif {{ trans('cruds.telemetry.fields.ln_helper') }}
@if($errors->has('br'))
{{ $errors->first('br') }}
@endif {{ trans('cruds.telemetry.fields.br_helper') }}
@if($errors->has('s'))
{{ $errors->first('s') }}
@endif {{ trans('cruds.telemetry.fields.s_helper') }}
@if($errors->has('device'))
{{ $errors->first('device') }}
@endif {{ trans('cruds.telemetry.fields.device_helper') }}
@endsection