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