@extends('layout') @section('content')

Join your organization

You just have to choose your nickname and organization to join

warning : we check this information on robertsspaceindustries.com

@csrf
{{ Form::text('email', old('email'), ['class' => 'form-control' . ($errors->has('email') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ Form::text('pseudo', old('pseudo'), ['class' => 'form-control' . ($errors->has('pseudo') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('pseudo')) {{ $errors->first('pseudo') }} @endif
{{ Form::text('organization', !empty($_GET['org']) ? $_GET['org'] : old('organization'), ['class' => 'form-control' . ($errors->has('organization') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('organization')) {{ $errors->first('organization') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop