@section('page_title') OSAA - Register @stop @section('page_sub_title') OSAA Account Registration @stop @section('scripts') @parent @stop @section('jquery_init') /* Once a role is selected, check to see if an activity can be selected or not */ $('#role').change (function updateRole () { var role_slug = $(this).find(":selected").val(); var no_act = ['Prin.', 'Asst. Prin.', 'AD', 'Asst. AD', 'Act. Dir.', 'Asst. Act. Dir.', 'Ath. Sec.', 'Act. Sec.', 'AT', 'Doc.', 'Contact', 'Book']; if ($.inArray(role_slug, no_act) < 0) { $("#activity").removeAttr('disabled'); } else { $('#activity').attr('disabled', 'disabled'); } }); $('#key').change(function () { if ($(this).val() == '') { $('#no_key').removeAttr('disabled'); } else { $('#no_key').attr('disabled', 'disabled'); } }); @stop @section('page_functions') @stop @section('main_content')

Register

Please fill in the following fields in order to setup your account.

Create Account

{{ Form::open(array('url' => url('/account/register'), 'class' => 'login')) }} @if (Session::has('errors'))
@foreach ($errors->all() as $error){{ $error }} @endforeach
@endif {{ Form::label('email', 'E-Mail Address', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::text('email', null, array('style' => 'width:200px;'))}}

{{ Form::label('password', 'Password', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::password('password') }}

{{ Form::label('confirm', 'Confirm Password', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::password('confirm') }}

Profile Information

{{ Form::label('first_name', 'First Name', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::text('first_name', null, array())}}

{{ Form::label('middle_name', 'Middle Name/Initials', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::text('middle_name', null, array())}} (optional)

{{ Form::label('last_name', 'Last Name', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::text('last_name', null, array())}}

{{ Form::label('nick_name', 'Nick Name', array('class' => 'input_label', 'style' => 'width:150px;')) }} {{ Form::text('nick_name', null, array())}} (optional)

Link to a School

{{ Form::label('school', 'School', array('class' => 'input_label')) }}
Fatal error: Class 'DB' not found in /home/osaa/web_app/dev/app/views/accounts/register.blade.php on line 114