{{ trans('contact::application') }}
{!! Form::errors($errors) !!}
{!! Form::open(['url' => 'application/store']) !!}
{!! Form::timestamp() !!}
@section('contact-application-fields')
{!! Form::smartText('username', trans('app.name'), user() ? user()->username : null) !!}
{!! Form::smartEmail('email', trans('app.email'), user() ? user()->email : null) !!}
{!! Form::smartSelectForeign('team_id', 'Team') !!}
{!! Form::smartText('role', trans('app.role')) !!}
{!! Form::smartTextarea('text', trans('contact::application')) !!}
@show
{!! Form::actions(['submit' => trans('app.send')], false) !!}
{!! Form::close() !!}