@extends('layouts.master') @section('title') Login @stop @section('content')
{!! Form::open(array("role" => "form", "route" => "sessions.store")) !!}

Please sign in

{!! Form::label("username", "Username: ") !!} {!! Form::text("username", null, array('placeholder' => "Username...")) !!}
{!! Form::label("password", "Password: ") !!} {!! Form::password("password", array('placeholder' => "Password...")) !!}
{!! Form::submit("Log in", array("class" => "btn btn-primary")) !!} {!! Form::close() !!}
@stop