@extends('frontend.layouts.app_minimal') @section('title', app_name() . ' | ' . __('labels.frontend.auth.register_box_title')) @section('content') {{ html()->form('POST', route('frontend.user.newplan'))->id('payment-form')->open() }} {{ html()->hidden('stripe_plan_id')}}
Sign up to Graphics Et Al
{{ html()->label('Subscription level')->for('subscription_level') }}
{{html()->radio('subscription_level',$plan&&$plan->selector=='student') ->class('custom-control-input')->id('radio2') ->value('student') ->attribute('onchange', "$('#payment_freq_group').show();$('#radio5').attr('required', 'required'); $('#update_plan_but').prop('disabled',false)")}}
{{html()->radio('subscription_level',$plan&&$plan->selector=='researcher')->class('custom-control-input')->id('radio3')->value('researcher') ->attribute('onchange', "$('#payment_freq_group').show();$('#radio5').attr('required', 'required'); $('#update_plan_but').prop('disabled',false)")}}
{{html()->radio('subscription_level',$plan&&$plan->selector=='lab')->class('custom-control-input')->id('radio4')->value('lab') ->attribute('onchange', "$('#payment_freq_group').show();$('#radio5').attr('required', 'required'); $('#update_plan_but').prop('disabled',true)")}}
{{-- onchange="$('#payment_freq_group').show();$('#payment_freq_group').attr('required', '')"/>--}}
{{ html()->label('Payment frequency')->for('payment_frequency') }}
{{html()->radio('payment_frequency',$plan&&$plan->period=='yearly')->class('custom-control-input')->id('radio5')->required()->value('yearly')}}
{{html()->radio('payment_frequency',$plan&&$plan->period=='monthly')->class('custom-control-input')->id('radio6')->value('monthly')}}
{{ html()->label('Plan details') }}
{{-- @if (!$logged_in_user->subscriptions->count() > 0)--}} {{-- Free plan: no time limit, just free.--}} {{-- Perfect for small projects. You get 3 boards and access to the free graphics.--}} {{-- @endif--}}
{{--
--}} {{--
--}} {{--
--}} {{-- {{ html()->label('Lab name')->for('lab_name') }}--}} {{-- {{ html()->text('lab_name')--}} {{-- ->class('form-control')--}} {{-- ->placeholder('My awesome lab')--}} {{--->value(($plan&&$plan->selector=='lab')?$logged_in_user->my_lab['name']:'')--}} {{-- ->attribute('maxlength', 191)--}} {{-- }}--}} {{--
--}} {{--
--}} {{--
--}}
Selected plan price: AUD

If you have any promotional codes, you can apply them in the next step

By subscribing to Graphics et al, you agree to the Terms and conditions.

Return
{{ html()->form()->close() }} @endsection @section('dialogs') @endsection @push('after-scripts') @endpush @push('after-styles') @endpush