@extends('super_admins.layouts.master') @section('title') Add Pricing Plans @endsection @php $currency_symbol = App\Models\GeneralSetting::where('name' , 'currency_symbol')->first(); @endphp @section('css') @endsection @section('content') @if ($errors->any()) @endif Pricing Plan Home Pricing Plans Add Pricing Plan @csrf Select Type : Doctor Clinic @if ($errors->has('type')) {{ $errors->first('type') }} @endif Is Paid ? No @if ($errors->has('is_paid')) {{ $errors->first('is_paid') }} @endif Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Tag Line @if ($errors->has('tagline')) {{ $errors->first('tagline') }} @endif Color @if ($errors->has('color')) {{ $errors->first('color') }} @endif Price {{ $currency_symbol && $currency_symbol->value ? $currency_symbol->value : '' }} @if ($errors->has('price')) {{ $errors->first('price') }} @endif Description {{ old('description') }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif Choose Picture @if ($errors->has('image')) {{ $errors->first('image') }} @endif Status Select Pricing Plan To Be Active Or Not {{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}} Doctor Modules Select All @foreach($doctor_modules as $module) {{ $module->display_name }} @endforeach Clinic Modules Select All @foreach($clinic_modules as $module) {{ $module->display_name }} @endforeach Submit @include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection