@extends('layouts.master') @section('title') Lorem-Ipsum Generator @stop @section('head') @stop @section('content')

Lorem Ipsum Generator

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
@endif @for($i=0; $i < count($graphs); $i++) {!! $graphs[$i] !!}

@endfor

@stop @section('body') @stop