message
This commit is contained in:
@@ -2,20 +2,28 @@
|
|||||||
@section('content')
|
@section('content')
|
||||||
<br>
|
<br>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
{!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!}
|
<div class="card">
|
||||||
<div class="form-group">
|
<div class="card-header">
|
||||||
{{ Form::label('name', 'Character Name') }}
|
<h2>Add User to the Blacklist</h2>
|
||||||
{{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'CCP Antiquarian']) }}
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
{!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!}
|
||||||
|
<div class="form-group">
|
||||||
|
{{ Form::label('name', 'Character Name') }}
|
||||||
|
{{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'CCP Antiquarian']) }}
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
{{ Form::label('reason', 'Reason') }}
|
||||||
|
{{ Form::textarea('reason', '', ['class' => 'form-control', 'placeholder' => 'Just another antiquated dev.']) }}
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
{{ Form::label('alts', 'Known Alts') }}
|
||||||
|
{{ Form::textarea('alts', '', ['class' => 'form-control']) }}
|
||||||
|
</div>
|
||||||
|
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
|
||||||
|
{!! Form::close() !!}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
{{ Form::label('reason', 'Reason') }}
|
|
||||||
{{ Form::textarea('reason', '', ['class' => 'form-control', 'placeholder' => 'Just another antiquated dev.']) }}
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
{{ Form::label('alts', 'Known Alts') }}
|
|
||||||
{{ Form::textarea('alts', '', ['class' => 'form-control']) }}
|
|
||||||
</div>
|
|
||||||
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
|
|
||||||
{!! Form::close() !!}
|
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
Reference in New Issue
Block a user