{!! Form::label('id', 'Id:') !!} {!! Form::number('id', null, ['class' => 'form-control']) !!}
{!! Form::label('user_id', 'User Id:') !!} {!! Form::number('user_id', null, ['class' => 'form-control']) !!}
{!! Form::label('owner_type', 'Owner Type:') !!} {!! Form::text('owner_type', null, ['class' => 'form-control']) !!}
{!! Form::label('owner_id', 'Owner Id:') !!} {!! Form::number('owner_id', null, ['class' => 'form-control']) !!}
{!! Form::label('old_value', 'Old Value:') !!} {!! Form::textarea('old_value', null, ['class' => 'form-control']) !!}
{!! Form::label('new_value', 'New Value:') !!} {!! Form::textarea('new_value', null, ['class' => 'form-control']) !!}
{!! Form::label('type', 'Type:') !!} {!! Form::text('type', null, ['class' => 'form-control']) !!}
{!! Form::label('created_at', 'Created At:') !!} {!! Form::date('created_at', null, ['class' => 'form-control']) !!}
{!! Form::label('updated_at', 'Updated At:') !!} {!! Form::date('updated_at', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel