@extends('dashboard.layouts.default') @section('content')
Student Details

{{ csrf_field() }} {!! Form::hidden('user_id', $details->id , [ 'id' => 'user_id'] ) !!}
{!! Form::text('fname', $details->fname , ['class' => 'form-control cursor_disabled', 'readonly','id' => 'fname', 'placeholder' => "Enter First Name"] ) !!}
{!! Form::text('lname', $details->lname , ['class' => 'form-control cursor_disabled', 'readonly','id' => 'lname', 'placeholder' => "Enter Last Name"] ) !!}
@if(IS_PRIVATE==1)
{!! Form::select('curriculum_id', $curriculum , $details->curriculum_id, ['class' => 'form-select new-drop-section', 'style' => 'width:100%','placeholder' => 'Select Exam Board','id' => 'curriculum_id', 'readonly'=>'readonly']) !!}
@endif
Change Your Password

{{ csrf_field() }} {!! Form::hidden('users_id', $details->id , [ 'id' => 'users_id'] ) !!}
  • At least 6 characters
  • At least 1 digit
@if($user_det)
@if($subscription) @if($user_det->type =='Tutor')

Your Subscription Started from {{ Carbon\Carbon::createFromFormat('Y-m-d', $subscription->start_date)->format('j F Y') }} and expires on {{ Carbon\Carbon::createFromFormat('Y-m-d', $subscription->expiry_date)->format('j F Y') }}

@endif @endif
Permanently delete account

Contact us at info@kayscience.com if you have any queries about how to use KayScience

@endif
@if($fisrt_login==2) @endif @endsection @section('pagescripts')