Blame view
resources/views/auth/register.blade.php
3.54 KB
6a962b009 Система авторизац... |
1 |
@extends('layouts.app', ['title' => 'Регистрация']) |
02a1ed535 Первый коммит Rek... |
2 3 4 5 6 7 |
@section('content') <div class="container"> <div class="row justify-content-center"> <div class="col-md-8"> <div class="card"> |
6a962b009 Система авторизац... |
8 |
<div class="card-header"></div> |
02a1ed535 Первый коммит Rek... |
9 10 11 12 13 14 |
<div class="card-body"> <form method="POST" action="{{ route('register') }}"> @csrf <div class="row mb-3"> |
6a962b009 Система авторизац... |
15 |
<label for="name" class="col-md-4 col-form-label text-md-end">Имя</label> |
02a1ed535 Первый коммит Rek... |
16 17 18 19 20 21 22 23 24 25 26 27 28 |
<div class="col-md-6"> <input id="name" type="text" class="form-control @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" autofocus> @error('name') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> </div> <div class="row mb-3"> |
6a962b009 Система авторизац... |
29 |
<label for="email" class="col-md-4 col-form-label text-md-end">Емайл</label> |
02a1ed535 Первый коммит Rek... |
30 31 32 33 34 35 36 37 38 39 40 41 42 |
<div class="col-md-6"> <input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email"> @error('email') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> </div> <div class="row mb-3"> |
6a962b009 Система авторизац... |
43 |
<label for="password" class="col-md-4 col-form-label text-md-end">Пароль</label> |
02a1ed535 Первый коммит Rek... |
44 45 46 47 48 49 50 51 52 53 54 55 56 |
<div class="col-md-6"> <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password"> @error('password') <span class="invalid-feedback" role="alert"> <strong>{{ $message }}</strong> </span> @enderror </div> </div> <div class="row mb-3"> |
6a962b009 Система авторизац... |
57 |
<label for="password-confirm" class="col-md-4 col-form-label text-md-end">Подтверждение пароля</label> |
02a1ed535 Первый коммит Rek... |
58 59 60 61 62 63 64 65 66 |
<div class="col-md-6"> <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password"> </div> </div> <div class="row mb-0"> <div class="col-md-6 offset-md-4"> <button type="submit" class="btn btn-primary"> |
6a962b009 Система авторизац... |
67 |
Регистрация |
02a1ed535 Первый коммит Rek... |
68 69 70 71 72 73 74 75 76 77 |
</button> </div> </div> </form> </div> </div> </div> </div> </div> @endsection |