@extends('layouts.dash_pop') @section('title') Email appel @stop @section('title_card',"") @section('subtitle_card',"") @section('content')
Envoi d'un email à {!! $employeur->nom !!}
{{ html()->form('POST', url('/recouvrement_sendmail/'.$employeur->id))->open() }}

{!! html()->label( 'Période de cotisation','lib_periode') !!}

{!! html()->label( 'Joindre le bordereau','pj') !!} {!! html()->checkbox('pj',true,'')->attributes(['checked']) !!}
{!! html()->label( 'Trimestre','tri_cotis') !!} {!! html()->select('tri_cotis',["T1"=>"1er trimestre","T2"=>"2e trimestre","T3"=>"3e trimestre","T4"=>"4e trimestre"],"") ->placeholder('Choisissez un trimestre') ->attributes(['id' => 'tri_cotis','class' => 'form-control selectpicker','data-width' => "100%"]) !!}
{!! html()->label( 'Désignation','libelle') !!} {!! html()->text('libelle_periode',$periode)->placeholder('Libellé de la période')->attributes(['id'=>'libelle_periode', 'class' => 'form-control']) !!}
{!! html()->label( 'Année','annee') !!} {!! html()->text('annee',$annee)->placeholder('Année')->attributes(['id'=>'annee', 'class' => 'form-control']) !!}
Aperçu

{!! html()->label( 'Email','lib_email') !!}

{!! html()->label( 'Destinataire','destinataire') !!} {!! html()->text('destinataire',$employeur->email)->placeholder('Email du destinataire')->attributes(['class' => 'form-control']) !!}
{!! html()->label( 'Objet','objet') !!} {!! html()->text('objet',$objet)->placeholder('Objet')->attributes(['class' => 'form-control']) !!}
{!! html()->label( 'Message','message') !!} {!! html()->textarea('message',$message)->placeholder('Message')->attributes(['rows'=>'6','class' => 'form-control']) !!}
{!! html()->button('Envoyer')->value('Envoyer')->type('submit')->attributes(['class' => 'btn btn-primary']) !!}
{{ html()->form()->close() }}
@endsection