@extends('layouts.app') @section('title', __('app.my_profile')) @section('content') @include('layouts.partials.breadcrumb',['page_title'=> __( 'app.my_profile') , 'bread_crumbs'=>array( array('title'=>__('app.profile'),'url'=>''))]) @foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) {{ ucfirst($msg) }}: {{ Session::get('alert-' . $msg) }} × @endif @endforeach @lang('app.change_password') @lang('app.user_profile') @csrf @component('components.widget', ['title' => __('app.update_password'),'icon' => __('')]) @endcomponent @csrf @include('user.edit_profile_form_personal_info_part') @include('user.edit_profile_form_more_info_part') @component('components.widget', ['title' => __('app.profile_photo')]) @if(!empty($user->media)) {!! $user->media->thumbnail([150, 150], 'img-circle') !!} @endif @lang('app.upload_image:') {!! Form::file('profile_photo', ['id' => 'profile_photo', 'accept' => 'image/*']); !!} @lang('app.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)]) @endcomponent {{ $user->first_name . " ".$user->last_name }} @php $profile_photo = auth()->user()->media; @endphp @if(!empty($profile_photo)) @else @endif Email :{{ $user->email }} Phone :{{ $user->contact_number }} Address :{{ $user->permanent_address }} Social Profile @endsection @section('javascript') @endsection
@lang('app.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)])
Email :{{ $user->email }}
Phone :{{ $user->contact_number }}
Address :{{ $user->permanent_address }}
Social Profile