migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
@extends('vendor.installer.layouts.master')
@section('title')
<i class="fa fa-key fa-fw" aria-hidden="true"></i>
{{ __('Verify Envato Purchase Code') }}
@endsection
@section('container')
<form method="post" action="{{ route('LaravelInstaller::codeVerifyProcess') }}" class="tabs-wrap">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="hidden" name="_tokens" value="purchase_code">
<div class="form-group {{ $errors->has('purchase_code') ? ' has-error ' : '' }}">
<label for="purchase_code">
{{ __('Purchase Code') }}
</label>
<input type="text" name="purchase_code" id="purchase_code" value="" placeholder="{{ __('Envato purchase code')}}" />
@if ($errors->has('purchase_code'))
<span class="error-block">
<i class="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i>
{{ $errors->first('purchase_code') }}
</span>
@endif
</div>
<div class="buttons">
<button class="button" type="submit">
{{ __('Verify Code') }}
<i class="fa fa-angle-right fa-fw" aria-hidden="true"></i>
</button>
</div>
</form>
@endsection