{!! Form::hidden('device_id', $device_id ?? null) !!}
{{ trans('front.gprs_command') }}
@if (isset($commands) && count($commands)) @foreach ($commands as $command) {!! Form::hidden('type', $command['type']) !!} @if (isset($command['attributes'])) @foreach ($command['attributes'] as $name => $value) {!! Form::hidden($name, $value) !!} @endforeach @endif @endforeach
{{ $command['title'] }}
@endif