@extends('layouts.popup.small') @section('content')

{{ trans('messages.list.select_customer_for_clone_list', ['list' => $list->name]) }}

{{ trans('messages.list.select_customer_for_clone_list.intro') }}

{{ csrf_field() }} @include('helpers.form_control', [ 'type' => 'select', 'name' => 'customers[]', 'label' => '', 'value' => '', 'multiple' => true, 'options' => $options, 'placeholder' => trans('messages.click_here_select_customer'), 'rules' => ['customers' => 'required'] ])
@endsection