@extends('layouts.b4') @section('content')

Add User to the Blacklist

{!! Form::open(['action' => 'Blacklist\BlacklistController@AddToBlacklist', 'method' => 'POST']) !!}
{{ Form::label('name', 'Entity Name') }} {{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'CCP Antiquarian']) }}
{{ Form::label('type', 'Entity Type') }} {{ Form::select('type', [ 'Character' => 'Character', 'Corporation' => 'Corporation', 'Alliance' => 'Alliance', ], 'Character', ['class' => 'form-control']) }}
{{ Form::label('reason', 'Reason') }} {{ Form::textarea('reason', 'No reason given.', ['class' => 'form-control']) }}
{{ Form::label('alts', 'Known Alts') }} {{ Form::textarea('alts', '', ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endsection