@extends('layouts.internal') @section('content') @section('breadcrumb')
{!! Form::text('name', $record->name, array('placeholder' => 'Name','class' => 'form-control', 'id' => 'name')) !!} | |
{!! Form::select('status', $status, '', array('class' => 'form-control', 'id' => 'status')) !!} | |
{!! Form::text('from', $record->from_email, array('placeholder' => 'from','class' => 'form-control', 'id' => 'from')) !!} | {!! Form::text('to', $record->to_email, array('placeholder' => 'to','class' => 'form-control', 'id' => 'to')) !!} |
{!! Form::text('cc', $record->cc_email, array('placeholder' => 'cc','class' => 'form-control', 'id' => 'cc')) !!} | |
{!! Form::text('subject', $record->subject, array('placeholder' => 'subject','class' => 'form-control', 'id' => 'subject')) !!} | |
{!! Form::text('subject', $record->created_at, array('placeholder' => 'subject','class' => 'form-control', 'id' => 'created_at')) !!} | |
{!! Form::text('send_At', $record->send_at, array('placeholder' => 'Send At','class' => 'form-control', 'id' => 'send_at')) !!} | |