@extends('staff::layouts.default') @section('title',trans('admin_default.my_profile')) @section('breadcrumb')
  • {{trans('admin_default.my_profile')}}
  • @endsection @section('content')
    {{trans('admin_default.my_profile')}}
    {{trans('admin_default.profile_information')}}
    {{trans('admin_default.name')}} : {{$data->name}}
    {{trans('admin_default.group')}} :
    {{trans('admin_default.email')}} : {{$data->email}}
    {{trans('admin_default.phone')}} : {{$data->phone}}
    {{trans('admin_default.account_information')}}
    {{trans('admin_default.username')}} : {{$data->username}}
    {{trans('admin_default.status')}} : {!!\Helper::getStateLabel( $data->state )!!}
    {{trans('admin_default.registered_date')}} : {{\Helper::getDateFormat($data->created_at, true)}}
    {{trans('admin_default.last_updated')}} : {{\Helper::getDateFormat($data->updated_at, true)}}
    @endsection @section('script') @parent @endsection