DEV Community

Cover image for Simple solution for generating forms in Laravel

Simple solution for generating forms in Laravel

Adi Sk on January 17, 2019

Hi There. I wanted to share with you my solution for generating form elements quickly in Laravel. Without the use of any external library or packag...
Collapse
 
anwar_nairi profile image
Anwar

Thank you for going into such details :) I am a big fan of @component, what do you think of those? Do you use them or you prefer to go for include statements?

Collapse
 
adi profile image
Adi Sk

Hi khalyomede, I do use @components (a lot) in my projects. But I kept it simple for the sake of the tutorial. This way even newbies can make use of this solutions. Forms were something I was afraid of when I got started.