Use the form below to generate Lorem Ipsum text and then copy the text to the clipboard.
Go Back
{!! Form::open(['url' => 'lip', 'class' => 'pure-form pure-form-aligned'] ) !!}
{!! Form::label('numGraphs', 'Number of Paragraphs') !!}
{!! Form::selectRange('numGraphs', 1,8, $numGraphs) !!}
{!! Form::label('size', 'Paragraph Length') !!}
{!! Form::select('size', array('s' => 'Short', 'm' => 'Med', 'l' => 'Long'), $size) !!}
{!! Form::submit('Generate Text!', ['class' => 'pure-button pure-button-primary']) !!}
{!! Form::close() !!}
@if(count($errors) > 0)
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
@endfor