@section('content')

SIGN UP FOR CITYRAVEN

Sign up with Facebook
Or signup with email
@if($errors->has()) @foreach ($errors->all() as $row)
{{ $row }}
@endforeach @endif {{ Form::open(array('action' => 'AccountController@postSignup')) }}

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

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

{{ Form::email('email', null, array('id' => 'email', 'placeholder' => 'Email Address', 'required' => 'true', 'class' => 'form-control')) }}

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

By creating an account, I accept CityRaven's Terms of Service and Privacy Policy.

{{ Form::close() }}

Already have an account? Log in.

@endsection