Log in to CityRaven

Log in with Facebook
OR
{{ Form::open(array('action' => 'AccountController@postLogin')) }} {{ Form::hidden('redirect_to', Request::path()) }} @if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif

{{ Form::text('username', null, array('id' => 'username', 'placeholder' => 'Username', 'required' => 'true', 'class' => 'form-control')) }}

{{ Form::password('password', array('id' => 'password', 'required' => 'true', 'placeholder' => 'Password', 'class' => 'form-control')) }}

Forgor password?

Or sign up for CityRaven

{{ Form::close() }}
@if(Auth::check())

Feedback

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif

{{ Form::textarea('message', null, array('id' => 'input-message', 'placeholder' => 'Message', 'required' => 'true', 'class' => 'form-control', 'rows' => 6)) }}

@endif