Blame view

resources/views/admin/profile.blade.php 3.84 KB
c5118e5f3   Андрей Ларионов   Админка сайта - в...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  @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