@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('style') @endsection @section('content')
@include('include.message')
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('currency')) {{ $errors->first('currency') }} @endif
@if ($errors->has('amount_month')) {{ $errors->first('amount_month') }} @endif
@if ($errors->has('amount_year')) {{ $errors->first('amount_year') }} @endif
@if ($errors->has('tax_rates')) {{ $errors->first('tax_rates') }} @endif
@if ($errors->has('coupons')) {{ $errors->first('coupons') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{ __('Features') }}
@if ($errors->has('features.text_chat')) {{ $errors->first('features.text_chat') }} @endif
@if ($errors->has('features.file_share')) {{ $errors->first('features.file_share') }} @endif
@if ($errors->has('features.screen_share')) {{ $errors->first('features.screen_share') }} @endif
@if ($errors->has('features.whiteboard')) {{ $errors->first('features.whiteboard') }} @endif
@if ($errors->has('features.hand_raise')) {{ $errors->first('features.hand_raise') }} @endif
@if ($errors->has('features.recording')) {{ $errors->first('features.recording') }} @endif
@if ($errors->has('features.meeting_no')) {{ $errors->first('features.meeting_no') }} @endif
@if ($errors->has('features.time_limit')) {{ $errors->first('features.time_limit') }} @endif
@if ($errors->has('features.user_limit')) {{ $errors->first('features.user_limit') }} @endif
@if ($errors->has('features.chatgpt')) {{ $errors->first('features.chatgpt') }} @endif
@endsection