profile.blade.php 3.84 KB
@extends('layout.admin', ['title' => 'Профиль пользователя'])

@section('content')
<!-- главный экран -->
<div class="profile-block-wrapper js_profile_data">
    <div class="profile-block">
        <p class="profile-block__title">Контактное лицо</p>
        <p class="profile-block__content">{{ auth()->user()->name }}</p>
    </div>
    <div class="profile-block">
        <p class="profile-block__title">Название компании</p>
        <p class="profile-block__content">ООО “ВЕКПРОМ”</p>
    </div>
    <div class="profile-block">
        <p class="profile-block__title">E-mail</p>
        <p class="profile-block__content">{{ auth()->user()->email }}</p>
    </div>
    <div class="profile-block">
        <p class="profile-block__title">Телефон</p>
        <p class="profile-block__content">+7 965 - 333 - 44 - 44</p>
    </div>
    <!--<div class="profile-block">
        <label class="form__label form__label-file profile-block__title-file" for="file">Данные компании (для юридических
            лиц)
            <svg width="14" height="22" class="svg-file">
                <use xlink:href="./img/icons.svg#input-file-oran"></use>
            </svg>
            <span class="choose-file acc-file">Реквизиты</span>
        </label>
        <input class="form-input" type="file" id="file" name="file">
    </div>-->
    <div class="profile-block-buttons">
        <!--<a class="profile-block-buttons__link-data" href="#">Изменить данные</a>-->
        <a class="profile-block-buttons__link-pass js_profile_pass" href="#">Изменить пароль</a>
    </div>
</div>


<!-- мой профиль - изменить пароль -->
<div class="change-pass-wrapper change-pass-wrapper--hidden js_change_pass">
    <form class="modal-reg-form profile-pass-change" method="post">

        <label class="form__label label-reg-pass error" for="prof-password">Текущий пароль
            <span class="required">*</span>
        </label>
        <input class="form-input auth-pass-err js_reg_pass" type="password"" id="prof-password" name="password"
        placeholder="Введите ваш пароль" required>
        <button class="modal-auth-show-pass prof-show-pass js_reg_show_pass"></button>

        <label class="form__label label-reg-pass error" for="prof-password-new">Новый пароль
            <span class="required">*</span>
        </label>
        <input class="form-input auth-pass-err js_prof_show_pass" type="password"" id="prof-password-new" name="password"
        placeholder="Введите ваш пароль" required>
        <button class="modal-auth-show-pass prof-show-pas-sec js_prof_pass_new"></button>

        <label class="form__label label-reg auth-label-pass" for="prof-confirm-password">Повторите новый пароль
            <span class="required">*</span>
            <span class="reg-pass-error reg-pass-error--hidden">Ошибка</span>
        </label>
        <input class="form-input reg-pass-conf-input js_pass_conf" type="password"" id="prof-confirm-password"
        name="confirm-password" placeholder="Введите пароль еще раз" required>
        <button class="modal-auth-show-pass prof-show-pas-third js_reg_show_pass_conf"></button>

        <div class="parts-content-form-bottom modal-auth-bottom">

            <button class="parts-content-form-bottom__button profile-pass-change__btn" type="submit">Изменить пароль</button>
        </div>
    </form>
</div>
<!-- мой профиль - изменить пароль - успешно -->
<div class="pass-change-succ pass-change-succ--hidden">
    <h2 class="pass-change-succ__title">Пароль успешно изменен</h2>
    <a class="pass-change-succ__btn" href="#">Хорошо</a>
</div>
@endsection