Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created August 20, 2014 13:57
Show Gist options
  • Save eminetto/1bb98079195d139dc47d to your computer and use it in GitHub Desktop.
Save eminetto/1bb98079195d139dc47d to your computer and use it in GitHub Desktop.
{{ Form::open(array('action' => 'HomeController@contato', 'role' => 'form')) }}
{{ Form::label('nome', 'Nome', array('class'=>'control-label')) }}
{{ Form::text('nome', null, array('placeholder'=>'Seu nome...', 'class'=>'form-control')) }}
{{ Form::label('email', 'E-mail', array('class'=>'control-label')) }}
{{ Form::text('email', null, array('placeholder'=>'Seu e-mail...', 'class'=>'form-control')) }}
{{ Form::submit('Enviar Mensagem', array('class' => 'btn btn-default')) }}{{ Form::close() }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment