This commit is contained in:
2019-12-01 03:53:49 -06:00
parent 6e12870182
commit 0ab18c9ebe

View File

@@ -2,6 +2,11 @@
@section('content') @section('content')
<br> <br>
<div class="container"> <div class="container">
<div class="card">
<div class="card-header">
<h2>Add User to the Blacklist</h2>
</div>
<div class="card-body">
{!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!} {!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!}
<div class="form-group"> <div class="form-group">
{{ Form::label('name', 'Character Name') }} {{ Form::label('name', 'Character Name') }}
@@ -17,5 +22,8 @@
</div> </div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!} {!! Form::close() !!}
</div>
</div>
</div> </div>
@endsection @endsection