@php use Illuminate\Support\Arr; use App\Libraries\General; use App\Libraries\DateTime; @endphp @extends('layouts.adminlayout') @section('content')
Manage Membership Plan
@include('admin.partials.flash_messages')

Update Membership Plan Details Here.

{{ @csrf_field() }}
Membership Plan information
@error('title') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@error('days') {{ $message }} @enderror
@error('hours') {{ $message }} @enderror
@error('price') {{ $message }} @enderror

Features
@php $features = isset($page->features) && $page->features && General::isJson($page->features) ? json_decode($page->features) : "" @endphp
{{--
--}}

-- You will be able to answer polls which the faculty will create for his next content.

-- You will be able to suggest topics to the faculty. (The faculty will either choose your option on majority basis or put it on poll.

-- You will be given access to personal video call that the faculty will organise.

-- You will be able to talk to the faculty.

{{--
--}}

@php $price = explode('-', $page->price_range); @endphp @endsection