@extends('layouts.adminlte.adminlte')
@section('title')
Blacklist - Remove user
@endsection
@section('content_header')
@parent
@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ Session::get('alert-' . $msg) }}
@endif
@endforeach
{!! Form::open(['action' => 'App\Http\Controllers\BlacklistController@destroy', 'method' => 'POST']) !!}
{{Form::label('value', 'Please enter the email', ['id' => 'value-label'])}}
{{Form::email('value', '', ['class' => 'col-md-4 form-control form-textbox', 'placeholder' => 'email'])}}
{{Form::submit('Remove from the blacklist', ['class' => 'btn btn-primary'])}}
{!! Form::close() !!}
@endsection
@section('js')
@parent
@stop
@section('css')
@parent
@stop