@extends('layouts.master')
@section('browserTitle')
@if(isset($_SESSION['logged'])&&($_SESSION['logged']==true))
@if($_SESSION['role']=='clinician')
{{ trans('menu.editPatientPw') }}
@elseif($_SESSION['role']=='patient')
{{ trans('menu.editPw') }}
@endif
@endif
@endsection
@section('breadcrumb')
@if(isset($_SESSION['logged'])&&($_SESSION['logged']==true))
@if($_SESSION['role']=='clinician')
{{ trans('menu.home') }}
{{ trans('menu.editPatientPw') }}
@elseif($_SESSION['role']=='patient')
Home
{{ trans('menu.editPw') }}
@endif
@endif
@endsection
@section('title')
@if(isset($_SESSION['logged'])&&($_SESSION['logged']==true))
@if($_SESSION['role']=='clinician')
{{ trans('menu.editPatientPw') }}
@elseif($_SESSION['role']=='patient')
{{ trans('menu.editPw') }}
@endif
@endif
@endsection
@section('body')
@endsection