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

Join us in the ARK

@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('name', old('name'), ['class' => 'form-control' . ($errors->has('name') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ Form::text('steamID', old('steamID'), ['class' => 'form-control' . ($errors->has('steamID') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('steamID')) {{ $errors->first('steamID') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop