@extends('layouts.dash_pop') @section('title') Email appel @stop @section('title_card',"") @section('subtitle_card',"") @section('content')
Message envoyé
{!! html()->label( 'Le message ci-dessous a été envoyé à : ','destinataire') !!} {!! html()->text('destinataire',$data["destinataire"])->attributes(['readonly', 'class' => 'form-control']) !!}
{!! html()->label( 'Objet','objet') !!} {!! html()->text('objet',$data["objet"])->attributes(['readonly', 'class' => 'form-control']) !!}
{!! html()->label( 'Pièces jointes','pj') !!} {!! html()->text('pj',$data["pj"])->attributes(['readonly', 'class' => 'form-control']) !!}
{!! html()->label( 'Message','message') !!} {!! html()->textarea('message',$data["message"])->attributes(['readonly', 'class' => 'form-control', 'rows'=>'6']) !!}
@endsection