@extends('Frontend.Layouts.modal')
@section('title')
{{ trans('front.unlock') }}
@stop
@section('body')
{!! Form::open(['route' => 'lock_status.do_unlock', 'method' => 'POST']) !!}
{!!trans('front.command_sent')!!}
{!! Form::hidden('id', $deviceId) !!}
{!!Form::label('type', trans('validation.attributes.type').'*:')!!}
{!! Form::select('type', $types, null, ['class' => 'form-control']) !!}
{!!Form::label('message', trans('validation.attributes.message').'*:')!!}
{!! Form::text('message', null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@stop
@section('buttons')
@stop