@extends('layouts.app')
@section('title')
Apply to be an Affiliate
@endsection
@section('content')
{!! breadcrumbs(['Site Affiliates' => 'affiliates']) !!}
Apply to be an Affiliate
@if (!$open)
We are currently closed for new affiliates!
@else
@include('home._affiliate_rules')
{!! Form::open(['url' => 'affiliates/apply']) !!}
@csrf
@honeypot
About Your Site
{!! Form::label('Site Name') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'The name of your ARPG or site.']) !!}
{!! Form::label('Short Description (Optional)') !!}
{!! Form::textarea('description', null, ['class' => 'form-control', 'style' => 'max-height:4em;', 'placeholder' => 'This will show up on hover over your icon. No more than 100 characters, please.']) !!}
About You
@auth
You are submitting this as {!! Auth::user()->displayName !!}. If you wish to submit this as a guest, please log out or use Incognito.
@else
{!! Form::label('Your Name') !!}
{!! Form::text('guest_name', null, ['class' => 'form-control', 'placeholder' => 'So we know who to talk to if there are any issues or questions.']) !!}
@endauth
{!! Form::label('Message (Optional)') !!}
{!! Form::textarea('message', null, ['class' => 'form-control', 'style' => 'max-height:8em;', 'placeholder' => 'This is a good place to put if you wish to be featured/sister sites or other notes to us.']) !!}
{!! Form::submit('Apply', ['class' => 'btn btn-primary btn-block']) !!}
{!! Form::close() !!}
@endif
@endsection