@layout('layouts.default') @section('content')
{{ Form::label('list_name', 'List name:') }}
{{ Form::text('list_name', Input::old('list_name')) }}
{{ Form::label('list_owner', 'List owner:') }}
{{ Form::text('list_owner', Input::old('list_owner')) }}
{{ Form::label('list_lang', 'Language:') }}
{{ Form::text('list_lang', Input::old('list_lang')) }}
{{ Form::label('list_replyto', 'Reply address:') }}
{{ Form::text('list_replyto', Input::old('list_replyto')) }}
{{ Form::label('list_msgmod', 'Message moderation:') }}
{{ Form::text('list_msgmod', Input::old('list_msgmod')) }}
{{ Form::label('list_postonly', 'Only members post:') }}
{{ Form::text('list_postonly', Input::old('list_postonly')) }}
{{ Form::label('list_submod', 'Subscriber moderation:') }}
{{ Form::text('list_submod', Input::old('list_submod')) }}
{{ Form::submit('Create mailing list' , array( 'class' => 'button')) }}
{{ Form::close() }} @endsection