@extends('layouts.adminlte.adminlte') @section('title') Blacklist - Add user @endsection @section('content_header') @parent
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }}

@endif @endforeach

Blacklist - Add user

@endsection @section('content')
{!! Form::open(['action' => 'App\Http\Controllers\BlacklistController@store', '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::label('reason', 'Please enter the reason', ['id' => 'value-label'])}} {{Form::text('reason', '', ['class' => 'col-md-4 form-control form-textbox', 'placeholder' => 'reason'])}}
{{Form::submit('Add to the blacklist', ['class' => 'btn btn-primary'])}} {!! Form::close() !!}

@endsection @section('js') @parent @stop @section('css') @parent @stop