@extends('layouts.app', [ 'title' => __('Perfil |'), 'navClass' => 'bg-default', 'parentSection' => 'laravel', 'elementName' => 'profile' ]) @section('title', 'Meu Perfil |') @section('css') @endsection @section('content') @include('forms.header', [ 'title' => __('Olá') . ', '. auth()->user()->name.'!', 'description' => __('Essa é a página do seu perfil onde você pode editar suas configurações do TravelTogether e ver os principais indicadores do seu trabalho.'), 'class' => 'col-lg-7' ])

Tarefas Realizadas

  • @foreach ($tasks->where('user_id', '=', Auth::user()->id) as $task)
    {{ $task->title }} | Prazo: {{ date('d/m/y', strtotime($task->due_date)) }} | Concluído em: {{ date('d/m/y', strtotime($task->done_date)) }}


    @endforeach
{{--
Valor Total em Vendas
R$ 350,897
Taxa de Conversão de Cotação
23,65%
--}}

Editar Perfil

@csrf @method('PUT')
Informações do Usuário
@include('alerts.success') @include('alerts.error_self_update', ['key' => 'not_allow_profile'])
@include('alerts.feedback', ['field' => 'name'])
@include('alerts.feedback', ['field' => 'email'])




@csrf @method('put')
Senha
@include('alerts.success', ['key' => 'password_status']) @include('alerts.error_self_update', ['key' => 'not_allow_password'])
@include('alerts.feedback', ['field' => 'old_password'])
@include('alerts.feedback', ['field' => 'password'])
@include('layouts.footers.auth')
@section('scripts') @endsection @endsection