{{--{{ print_r(json_decode($session->custom_views_projects)).dd() }}--}} @extends('admin.layouts.app') @section('pageTitle') {{ Lang::get('main.home_page_title') }} @endsection @section('contentHeader')

{{ Lang::get('main.sessions') }} {{ Lang::get('main.edit') }}

@endsection @section('content')
{{ Lang::get('main.sessions') }}
@if($session->session_status != 'available') @if(is_null($session->therapist_start_date)) Therapist not started the session @else therapist started the session @endif @if(is_null($session->visitor_start_date)) Patient not started the session @else Patient started the session @endif @endif
{!! Form::open(['method'=>'PUT','url'=>'admin/sessions/'.$session->id,'class'=>"form-horizontal"]) !!}
{{ Lang::get('main.form_validation_error') }}
{{ Lang::get('main.form_validation_success') }}
@if(count($sessionTimesChanges)) @foreach($sessionTimesChanges as $to=>$from) @endforeach
From To
{{ $from }} {{ $to }}
@endif
status==1) checked @endif data-on-color="success" data-on-text="1" data-off-color="default" data-off-text="0">
{!! Form::close() !!}
@endsection @section('scriptCode') @endsection