@extends('vendors.layout') @section('content')
@php $current_package = App\Http\Helpers\VendorPermissionHelper::packagePermission(Auth::guard('vendor')->user()->id); @endphp @if ($current_package != '[]') @if ($current_package->zoom_meeting_status == 1)
@csrf
{{ __('Zoom') }}
@if ($errors->has('zoom_account_id'))

{{ $errors->first('zoom_account_id') }}

@endif
@if ($errors->has('zoom_client_id'))

{{ $errors->first('zoom_client_id') }}

@endif
@if ($errors->has('zoom_client_secret'))

{{ $errors->first('zoom_client_secret') }}

@endif
@endif @if ($current_package->calendar_status == 1)
@csrf
{{ __('Google Calendar') }}
@if ($errors->has('google_calendar'))

{{ $errors->first('google_calendar') }}

@endif @if ($data && $data->google_calendar) {{ __('You have a file, and you can change it by re-uploading it.') }}
@endif {{ __('Only json file allowed.') }}
@if ($errors->has('calender_id'))

{{ $errors->first('calender_id') }}

@endif
@endif @endif
@endsection