HomeLaravel

Laravel 5 Tutorial : Forms & HTML Class in laravel 5.3

Laravel 5 Tutorial for beginner : how to use Forms & HTML Class in laravel 5.3? Html, Form class not found in Laravel 5.3, Laravel 5 Class 'HTML' not found

Laravel 5 Tutorial : How to Send Email using Gmail SMTP in laravel 5.3
Laravel 5 Tutorial : How to Create File Upload in laravel 5.3
Laravel 5 Tutorial : How to use Validation in Laravel 5.3
Laravel 5 Tutorial - How to solved Html and Form class not found in Laravel 5.3? to add class HTML & FORM in Laravel 5.3 you need three simple steps. that because By default in Laravel 5.3, Html and Form are not embedded anymore.

at the previews lessons, we have learn about Http Session Method in Laravel 5.3 and How to Create localization for Multiple languages in laravel 5.3.

HTML & Form Class Installation

Add the following lines laravelcollective/html": "5.3.* in the require section of your composer.json file and run composer update.

"require": {
. . . .
    "laravelcollective/html": "5.3.*"
. . . .
}

than RUN "compser update" on your terminal.

composer update

Next, we need to Register the service provider by default stored on config/app.php by adding the following value into the providers array:

'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,
    // ...
  ],

Register facades by adding these two lines in the aliases array on config/app.php :

'aliases' => [
    // ...
      'Form' => Collective\Html\FormFacade::class,
      'Html' => Collective\Html\HtmlFacade::class,
    // ...
  ],

Now, you can add Form and Html class in your Laravel project.
Laravel 5 Tutorial : Forms & HTML Class in laravel 5.3

Create Form & HTML Class Example

First, create new Views file stored in resources\views\newformpage.blade.php

newformpage.blade.php

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>FORM & HTML</title>
  </head>
  <body>
<?php
  echo Form::open(['url' => 'foo/bar']);
    echo Form::text('username','username');
    echo '<br/>';
    echo Form::text('email','yourmail@here.com');
    echo '<br/>';
    echo Form::password('password');
    echo '<br/>';
    echo Form::checkbox('name','value');
    echo '<br/>';
    echo Form::radio('name','value');
    echo '<br/>';
    echo Form::file('image');
    echo '<br/>';
    echo Form::select('Gender',['P'=>'perempuan','L'=> 'Laki-laki']);
    echo '<br/>';
    echo Form::submit('Register Now');
  echo Form::close(); ?>
  </body>
</html>

Create new routes on routes\web.php

web.php

Route::get('/form', function () {
    return view('newformpage');
});

Now, try to access your new page by following this url : http://localhost:8080/form

Video tutorial Forms & HTML Class in laravel 5.3



See you next Lessons More method can use in Form & Html Class

Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


COMMENTS

DISQUS
Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: Laravel 5 Tutorial : Forms & HTML Class in laravel 5.3
Laravel 5 Tutorial : Forms & HTML Class in laravel 5.3
Laravel 5 Tutorial for beginner : how to use Forms & HTML Class in laravel 5.3? Html, Form class not found in Laravel 5.3, Laravel 5 Class 'HTML' not found
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW_gW0hFBdQzEbgPVj8CV2QVFk5fYDxek9qWhpYaID7SGeewC8ZVrgD651nNRU2JNM6UlGrhQ5wIQKI7gTy1k2VUVZv8V7kl6-2sqyMn3NnLfe6S034X1QGOvQ9GhQGGAtkWX9vs0iOyQ/s320/laravel-tutorial-for-beginner.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW_gW0hFBdQzEbgPVj8CV2QVFk5fYDxek9qWhpYaID7SGeewC8ZVrgD651nNRU2JNM6UlGrhQ5wIQKI7gTy1k2VUVZv8V7kl6-2sqyMn3NnLfe6S034X1QGOvQ9GhQGGAtkWX9vs0iOyQ/s72-c/laravel-tutorial-for-beginner.png
KODE AJAIB
https://scqq.blogspot.com/2016/09/laravel-5-tutorial-forms-html-class.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/09/laravel-5-tutorial-forms-html-class.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy