44 lines
2.2 KiB
PHP
Executable File
44 lines
2.2 KiB
PHP
Executable File
<?php $__env->startSection('title', 'Nuova Mailing List'); ?>
|
|
<?php $__env->startSection('page_title', 'Nuova Mailing List'); ?>
|
|
|
|
<?php $__env->startSection('content'); ?>
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title"><i class="fas fa-plus mr-2"></i>Crea Mailing List</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="<?php echo e(route('mailing-liste.store')); ?>" method="POST">
|
|
<?php echo csrf_field(); ?>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<label>Nome *</label>
|
|
<input type="text" name="nome" class="form-control" required>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="form-group">
|
|
<div class="custom-control custom-checkbox mt-4">
|
|
<input type="checkbox" class="custom-control-input" id="attiva" name="attiva" value="1" checked>
|
|
<label class="custom-control-label" for="attiva">Lista attiva</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Descrizione</label>
|
|
<textarea name="descrizione" class="form-control" rows="2"></textarea>
|
|
</div>
|
|
<div class="alert alert-info">
|
|
<i class="fas fa-info-circle mr-1"></i>
|
|
<strong>Come aggiungere contatti:</strong> vai su <em>Individui</em>, seleziona le righe desired, e usa il menu <em>Azioni > Crea Mailing List</em> per creare una lista dai contatti selezionati.
|
|
</div>
|
|
<button type="submit" class="btn btn-success">
|
|
<i class="fas fa-save mr-1"></i> Salva Lista
|
|
</button>
|
|
<a href="<?php echo e(route('mailing-liste.index')); ?>" class="btn btn-secondary">Annulla</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php $__env->stopSection(); ?>
|
|
<?php echo $__env->make('layouts.adminlte', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/glastree/resources/views/mailing-liste/create.blade.php ENDPATH**/ ?>
|