@section('form')
@if(isset($erreurs['firstname'])) @else @endif
@if(isset($erreurs['lastname'])) @else @endif


@if(isset($erreurs['email'])) @else @endif
@if(isset($erreurs['homephone'])) @else @endif
@if(isset($erreurs['cellphone'])) @else @endif


{{ Form::select('country', array() , null , array('class' => 'form-control' , 'id' => 'country')) }}
{{ Form::select('prov_state', array() , null , array('class' => 'form-control' , 'id' => 'prov_state')) }}


{{ Form::select('lang', array('FR' => Lang::get('format.french'), 'EN' => Lang::get('format.english') ), (isset($_REQUEST['lang'])?$_REQUEST['lang']:null), array('class' => 'form-control' , 'style' => 'margin-bottom:5px', 'placeholder' => Lang::get('booking.language'))) }}
{{ Form::select('active', array('1' => Lang::get('account.activate'), '0' => Lang::get('account.desactivate') ), (isset($_REQUEST['active'])?$_REQUEST['active']:null), array('class' => 'form-control' , 'style' => 'margin-bottom:5px', 'placeholder' => Lang::get('account.activate'))) }}
@if(isset($erreurs['password'])) @else @endif
@if(isset($erreurs['password_confirmation'])) @else @endif
@stop