@extends('Frontend.Layouts.modal')
@section('title')
{!! trans('global.add') !!}
@stop
@section('body')
{!! Form::open(['route' => ['devices_groups.store'], 'method' => 'POST']) !!}
{!! Form::label('title', trans('validation.attributes.title').':') !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('devices', trans('validation.attributes.devices').':') !!}
{!! Form::select('devices[]', $devices, null, ['class' => 'form-control multiexpand', 'multiple' => 'multiple', 'data-live-search' => true, 'data-actions-box' => true]) !!}
{!! Form::close() !!}
@stop
@section('buttons')
@stop