@extends('layouts.generic') {{-- SEO, Schema & Share --}} @section('page_title', __('Checkout your order')) @section('share_url', route('jobs.purchase')) @section('share_title', __('Checkout your order') . '-' .getSetting('site.name')) @section('share_description', getSetting('site.description')) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('meta') @stop @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', '/libs/@selectize/selectize/dist/css/selectize.css', '/libs/@selectize/selectize/dist/css/selectize.bootstrap4.css', '/libs/dropzone/dist/dropzone.css', '/css/checkout.css' ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ '/libs/@selectize/selectize/dist/js/selectize.min.js', '/js/checkout.js', '/js/CreateHelper.js', '/js/JobCreate.js', '/js/pages/purchase.js', '/js/LoginModal.js', ])->withFullUrl() !!} @stop @section('content') @include('uploaded-file-preview-template')
@include('elements.create.steps-indicator',['step' => 4])
@if(Auth::check())
@endif
@include('elements.message-alert', ['classes' => 'mb-4']) @include('elements.checkout-box')
{{__("Back")}}
@if(!$jobID && $selectedPlan->price) @endif @if(Auth::check())
@else @endif
@if(Auth::check()) @else @include('elements.modal-login') @endif @stop