@extends('Admin.Layouts.modal')
@section('title')
{{ trans('global.edit') }}
@stop
@section('body')
{!! Form::open(['route' => 'admin.device_config.store', 'method' => 'POST']) !!}
{!! Form::hidden('active', 0) !!}
{!! Form::checkbox('active', 1, true) !!}
{!! Form::label('active', trans('validation.attributes.active') ) !!}
{!! Form::label('brand', trans('validation.attributes.brand')) !!}
{!! Form::text('brand', null, ['class' => 'form-control']) !!}
{!! Form::label('model', trans('front.model')) !!}
{!! Form::text('model', null, ['class' => 'form-control']) !!}
@include("Admin.DeviceConfig.partials._commands_panel", ['commands' => []])
{!! Form::close() !!}
@include("Admin.DeviceConfig.partials._command")
@stop