Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Last active December 20, 2015 06:49
Show Gist options
  • Save mateusgf/6088520 to your computer and use it in GitHub Desktop.
Save mateusgf/6088520 to your computer and use it in GitHub Desktop.
@layout('layouts.default')
@section('content')
<h1>Login</h1>
{{ Form::open('login', 'POST') }}
{{ Form::token() }}
<p>
{{ Form::label('username', 'Username') }}<br />
{{ Form::text('username', Input::old('username')) }}
</p>
<p>
{{ Form::label('password', 'Password') }}<br />
{{ Form::password('password') }}
</p>
<p>{{ Form::submit('Login') }}</p>
{{ Form::close() }}
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment