+ {!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!}
+
+ {{ Form::label('name', 'Character Name') }}
+ {{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'CCP Antiquarian']) }}
+
+
+ {{ Form::label('reason', 'Reason') }}
+ {{ Form::textarea('reason', '', ['class' => 'form-control', 'placeholder' => 'Just another antiquated dev.']) }}
+
+
+ {{ Form::label('alts', 'Known Alts') }}
+ {{ Form::textarea('alts', '', ['class' => 'form-control']) }}
+
+ {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
+ {!! Form::close() !!}
+