You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
468 B

<!-- Text body Form Input -->
<div class="form-group @if ($errors->has('body')) has-error @endif">
{!! Form::label('ciphertext', 'Text Encrypted') !!}
{!! Form::textarea('ciphertext', $ciphertext ?? null, ['class' => 'form-control', 'placeholder' => 'Text Encrypted...']) !!}
@if ($errors->has('ciphertext')) <p class="help-block">{{ $errors->first('ciphertext') }}</p> @endif
</div>
<div>
<h3>Text original</h3>
<p>{{$plaintext ?? null}}</p>
</div>