@extends('layouts.app')
@section('content')
@php
function formatPath($path)
{
return str_replace(['/', ' '], ['-', ''], $path);
}
@endphp
@if ($user->type_id == 1)
@endif
{{ __('user.title.edit') }} [{{ $user->name }}]
@switch($section)
@case(1)
@include('user.edit.personal')
@break
@case(2)
@include('user.edit.work')
@break
@case(3)
@include('user.edit.files')
@include('user.modals.files.update')
@break
@endswitch