@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

@csrf
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('is_paid')) {{ $errors->first('is_paid') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('tagline')) {{ $errors->first('tagline') }} @endif
@if ($errors->has('color')) {{ $errors->first('color') }} @endif
{{ $currency_symbol && $currency_symbol->value ? $currency_symbol->value : '' }} @if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
{{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}}
@foreach($doctor_modules as $module)
@endforeach
@foreach($clinic_modules as $module)
@endforeach
@include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection