@extends('templates.outs.auth') @section('content')

LOGIN

@if ($errors->first()) {{ $errors->first() }} @endif
{!! Form::open(array('action' => 'UsersController@login')) !!}
{!! Form::text( 'email', null, array('class' => 'form-control', "placeholder" => "Email","autofocus" => "true" )) !!}
{!! Form::password( 'password', array('class' => 'form-control', "placeholder" => "Password" )) !!}
{!! Form::submit( 'Login', array('class' => 'btn btn-primary btn-wide')) !!}
{!! Form::close() !!}

Don't have an account? register

@stop