@extends('layouts.front') @section('title')@lang('Webcart Activation') - {{config('app.name')}}@endsection @section('meta-tags') @endsection @section('meta-tags-og') @endsection @section('styles') @endsection @section('scripts') @endsection @section('content')

@lang('Please activate your package')

@lang('Please activate this package with a purchase code. If you don’t have a purchase code yet, you can purchase it from') @lang('here')


@if(session()->has('webcart_not_activated')) @endif @include('includes.form_errors') {!! Form::open(['method'=>'post', 'action'=>'WebcartActivationController@activate', 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}
{!! Form::label('purchase_code', __('Your Purchase Code') ) !!} @lang('Click Here Get Your Purchase Code') {!! Form::text('purchase_code', null, ['class'=>'form-control', 'placeholder'=>__('Enter your purchase code'), 'required'])!!}
{!! Form::submit( __('Activate Now'), ['class'=>'btn btn-primary btn-block', 'name'=>'submit_button']) !!} {!! Form::close() !!}
@endsection