@extends('layouts.app', ['title' => 'Профиль']) @section('content')
@csrf @include('partials.input', ['name' => 'email', 'title' => 'E-mail', 'disabled' => true, 'value' => $user->email]) @include('partials.input', ['name' => 'name', 'title' => 'Имя', 'required' => true, 'value' => $user->name]) @include('partials.input', ['name' => 'role', 'title' => 'Роль', 'disabled' => true, 'value' => getRoles($user->role)]) @include('partials.input', ['name' => 'phone', 'title' => 'Телефон', 'value' => $user->phone ?? ''])
@include('partials.input', ['name' => 'current_password', 'type' => 'password', 'title' => 'Текущий пароль']) @include('partials.input', ['name' => 'password', 'type' => 'password', 'title' => 'Новый пароль']) @include('partials.input', ['name' => 'password_confirmation', 'type' => 'password', 'title' => 'Подтверждение пароля'])
@include('partials.submit', ['']) {{-- Выход--}}
@endsection