Last active
April 11, 2017 19:26
-
-
Save bulfaitelo/069316e4264635935ccee40096c3e189 to your computer and use it in GitHub Desktop.
bulfaitelo.com.br/2017/04/tutorial-laravel-para-iniciantes-parte2.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Bullfaitelo Form test</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Bullfaitelo Form test</h1> | |
<hr /> | |
<form action="enviar" method="POST"> | |
<input type="hidden" name="_token" value="{{ csrf_token() }}"> | |
<div class="form-group"> | |
<label for="nome">Nome</label> | |
<input type="text" id="nome" name="nome" class="form-control" placeholder="Nome"> </div> | |
<div class="form-group"> | |
<label for="email">E-Mail</label> | |
<input type="text" id="email" name="email" class="form-control" placeholder="E-Mail"> </div> | |
<div class="form-group"> | |
<textarea id="mensagem" name="mensagem" class="form-control" placeholder="Digite sua mensagem"></textarea> | |
</div> | |
<button type="submit" class="btn btn-default">Enviar</button> | |
</form> | |
<a target="_blank" href="http://bulfaitelo.com.br/2017/04/tutorial-laravel-para-iniciantes-parte2.html"> Tutorial Laravel para iniciantes - Parte 02 [Primeiro Formulario e MVC] </a><br> | |
<a target="_blank" href="http://www.bulfaitelo.com.br/2017/04/tutorial-laravel-para-iniciantes-parte03.html"> Tutorial Laravel para iniciantes - Parte 03 [Configuração e manipulação do MySQL] </a> | |
<h3>Listar:</h3> | |
<a target="_blank" href="listar"> Listar envios! </a> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment