@extends("admin.layouts.app") @section("content")
New Black List Item
{{ Form::open(['route'=>"admin.black-listed.store", 'role'=>"form"]) }}
{{Form::text("value",NULL,['class'=>'form-control m-input'])}}
{{Form::textarea("note",NULL,['class'=>'form-control m-input'])}}
@if ($errors->has('value'))
{{ $errors->first('value') }}
@endif
{!! Form::close() !!}
@endsection