@extends('Frontend.Layouts.modal')
@section('title')
{{ trans('front.sharing') }}
@stop
@section('body')
{!! Form::open(['route' => 'sharing.store', 'method' => 'POST']) !!}
{!! Form::label('name', trans('validation.attributes.name').':') !!}
{!! Form::text('name', 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