@extends('layouts.popup.small') @section('title')
content_copy
{!! trans('messages.automation.copy.title', [ 'name' => $automation->name ]) !!} @endsection @section('content')
{{ csrf_field() }}
{{ trans('messages.automation.copy.wording') }}
{{ trans('messages.automation.name') }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ trans('messages.list') }}
@foreach (Auth::user()->customer->readCache('MailListSelectOptions', []) as $option)
mailList->uid == $option['value'] ? 'selected' : '' }} value="{{ $option['value'] }}">{{ $option['text'] }}
@endforeach
@if ($errors->has('mail_list_uid'))
{{ $errors->first('mail_list_uid') }}
@endif
{{ trans('messages.save') }}
{{ trans('messages.cancel') }}
@endsection