diff --git a/resources/views/blacklist/add.blade.php b/resources/views/blacklist/add.blade.php index 042bcaff6..200d2a420 100644 --- a/resources/views/blacklist/add.blade.php +++ b/resources/views/blacklist/add.blade.php @@ -2,20 +2,28 @@ @section('content')
- {!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!} -
- {{ Form::label('name', 'Character Name') }} - {{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'CCP Antiquarian']) }} +
+
+

Add User to the Blacklist

+
+
+ {!! 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() !!} +
-
- {{ 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() !!} +
@endsection \ No newline at end of file