{{ Form::label('fname', 'First Name') }} *
{{ Form::text('fname', null, array('class' => 'width_40 required', 'maxlength' => '25')) }}
{{ Form::label('lname', 'Last Name') }} *
{{ Form::text('lname', null, array('class' => 'width_40 required', 'maxlength' => '35')) }}
{{ Form::label('email', 'Email') }} *
{{ Form::text('email', null, array('class' => 'width_40 required', 'maxlength' => '64')) }}
@if (!isset($method))
{{ Form::label('password', 'Password') }} *
{{ Form::password('password', array('class' => 'width_40 required', 'maxlength' => '12', 'autocomplete' => 'off')) }}
{{ Form::label('password_confirmation', 'Re-Enter Pw') }} *
{{ Form::password('password_confirmation', array('class' => 'width_40 required', 'maxlength' => '12', 'autocomplete' => 'off')) }}
@endif
{{ Form::submit('Save', array('class' => 'image_button small right')) }}