PHPackages                             shamithewebdeveloper/laravel-forms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. shamithewebdeveloper/laravel-forms

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

shamithewebdeveloper/laravel-forms
==================================

A Laravel package for easy HTML form generation.

v1.2.0(10mo ago)17MITPHPPHP &gt;=7.4

Since Aug 15Pushed 10mo agoCompare

[ Source](https://github.com/ShamiTheWebdeveloper/laravel-forms)[ Packagist](https://packagist.org/packages/shamithewebdeveloper/laravel-forms)[ RSS](/packages/shamithewebdeveloper-laravel-forms/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (1)Versions (3)Used By (0)

Laravel Forms
=============

[](#laravel-forms)

A lightweight Laravel package for generating HTML forms easily.

Installation
------------

[](#installation)

`composer require shamithewebdeveloper/laravel-forms`

Usage
-----

[](#usage)

```
use ShamiTheWebdeveloper\LaravelForms\Form;

echo Form::open('home');
echo Form::label('Name', 'name');
echo Form::text('name');
echo Form::submit('Send');
echo Form::close();

// For blade files

{!! form()->open('createPage','PATCH',false,true,['class'=>'page-form']) !!}

    {!! form()->label('Title','title') !!}
    {!! form()->text('title') !!}

    {!! form()->label('Link:','link') !!}
    {!! form()->url('link') !!}

    {!! form()->label('Description:','body') !!}
    {!! form()->textarea('body',null,10,60) !!}

    {!! form()->label('Seclude Page:','time') !!}
    {!! form()->time('time') !!}

    {!! form()->label('Background color of page:','bg_color') !!}
    {!! form()->color('bg_color') !!}

    {!! form()->label('Published Now?','publish') !!}
    {!! form()->checkbox('publish',true) !!}

    {!! form()->submit('Save',['class'=>'btn btn-save']) !!}

    {!! form()->reset('reset','Reset Form') !!}

{!! form()->close() !!}

// If route has parameter use first parameter as array
{!! form()->open(['updatePage',$page->id],'PATCH',false,true,['class'=>'page-form']) !!}
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance54

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Total

2

Last Release

315d ago

PHP version history (2 changes)v1.0.0PHP &gt;=8.0

v1.2.0PHP &gt;=7.4

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/478505?v=4)[Ehtisham](/maintainers/Ehtisham)[@Ehtisham](https://github.com/Ehtisham)

---

Top Contributors

[![ShamiTheWebdeveloper](https://avatars.githubusercontent.com/u/122912862?v=4)](https://github.com/ShamiTheWebdeveloper "ShamiTheWebdeveloper (8 commits)")

### Embed Badge

![Health badge](/badges/shamithewebdeveloper-laravel-forms/health.svg)

```
[![Health](https://phpackages.com/badges/shamithewebdeveloper-laravel-forms/health.svg)](https://phpackages.com/packages/shamithewebdeveloper-laravel-forms)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[illuminate/pagination

The Illuminate Pagination package.

12234.1M1.0k](/packages/illuminate-pagination)[illuminate/pipeline

The Illuminate Pipeline package.

9349.2M281](/packages/illuminate-pipeline)[illuminate/redis

The Illuminate Redis package.

8314.6M375](/packages/illuminate-redis)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
