{{-- Name: receiverList.partials.createList Author: Arto Laine Created: 2015-10-22 Updated by: Description: receiverList.partials.createList displays an receiver list creation form for receiverList.create --}} @extends('partials.box') @section($content_id) {!! Form::open(['method' => 'POST', 'class' => 'form-horizontal', 'route' => 'receiverlist.store', 'data-element' => 'receiverlist-form']) !!}
{!! Form::label('name', Lang::get('receiverList.form.name'), ['class' => 'col-md-3 control-label', 'maxlength' => '32']) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control', 'data-element' => 'receiverlist_name']) !!} {!! $errors->first('name', ':message') !!}
{!! Lang::get('receiverList.form.helptext') !!}
{!! Form::label('comment', Lang::get('receiverList.form.comment'), ['class' => 'col-md-3 control-label', 'maxlength' => '256']) !!}
{!! Form::textarea('comment', old('comment'), ['class' => 'form-control', 'rows' => '3', 'data-element' => 'receiverlist_comment']) !!} {!! $errors->first('comment', ':message') !!}
{!! Form::label('status', Lang::get('receiverList.form.private'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::checkbox('status', '0', true) !!}

{{ Lang::get('receiver.form.abort') }} {!! Form::submit(Lang::get('receiverList.form.save'), ['class' => 'btn btn-primary pull-right push-left', 'data-element' => 'receiverlist_store']) !!}
{!! Form::close() !!} @stop