@extends('Frontend.Layouts.modal')
@section('title')
{!! trans('global.edit') !!}
@stop
@section('body')
{!! Form::model($item, ['route' => ['pois_groups.update', $item], 'method' => 'PUT']) !!}
{!! Form::label('title', trans('validation.attributes.title').':') !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('pois', trans('front.poi').':') !!}
{!! Form::select('pois[]', $pois->pluck('name', 'id')->all(), $item->pois->pluck('id', 'id')->all(), ['class' => 'form-control multiexpand', 'multiple' => 'multiple', 'data-live-search' => 'true', 'data-actions-box' => 'true']) !!}
{!! Form::close() !!}
@stop
@section('buttons')
@stop