@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
|
{{ $command['title'] }}
|
|
@endforeach
@endif