Файл: resources/views/auth/passwords/reset.blade.php
Строк: 97
<?php
@extends('layouts.auth')
@section('site_title', formatTitle([Str::ucfirst(mb_strtolower(__('Reset Password'))), config('settings.title')]))
@section('head_content')
@endsection
@section('content')
<div class="bg-base-1 d-flex align-items-center flex-fill">
<div class="container h-100 py-6">
<div class="text-center d-block d-lg-none">
<h1 class="h2 mb-3 d-inline-block">{{ Str::ucfirst(mb_strtolower(__('Reset Password'))) }}</h1>
<div class="m-auto">
<p class="text-muted font-weight-normal font-size-lg mb-0">{{ __('Get back your account.') }}</p>
</div>
</div>
<div class="row h-100 justify-content-center align-items-center mt-5 mt-lg-0">
<div class="col-12">
<div class="card border-0 shadow-sm overflow-hidden">
<div class="row no-gutters">
<div class="col-12 col-lg-5">
<div class="card-body p-lg-5">
@include('shared.message')
<form method="POST" action="{{ route('password.update') }}">
@csrf
<input type="hidden" name="token" value="{{ $token }}">
<div class="form-group">
<label for="i-email">{{ __('Email address') }}</label>
<input id="i-email" type="text" dir="ltr" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" autofocus>
@if ($errors->has('email'))
<span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
</div>
<div class="form-group">
<label for="i-password">{{ __('Password') }}</label>
<input id="i-password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password">
@if ($errors->has('password'))
<span class="invalid-feedback" role="alert">
<strong>{{ $errors->first('password') }}</strong>
</span>
@endif
</div>
<div class="form-group">
<label for="i-password-confirmation">{{ __('Confirm password') }}</label>
<input id="i-password-confirmation" type="password" class="form-control{{ $errors->has('password_confirmation') ? ' is-invalid' : '' }}" name="password_confirmation">
</div>
<button type="submit" class="btn btn-block btn-primary">
{{ __('Reset Password') }}
</button>
</form>
</div>
</div>
<div class="col-12 col-lg-7 bg-dark d-none d-lg-flex flex-fill background-size-cover background-position-center" style="background-image: url({{ asset('images/password.svg') }})">
<div class="card-body p-lg-5 d-flex flex-column flex-fill position-absolute top-0 right-0 bottom-0 left-0">
<div class="d-flex align-items-center d-flex flex-fill">
<div class="text-light {{ (__('lang_dir') == 'rtl' ? 'mr-5' : 'ml-5') }}">
<div class="h2 font-weight-bold">
{{ Str::ucfirst(mb_strtolower(__('Reset Password'))) }}
</div>
<div class="font-size-lg font-weight-medium">
{{ __('Get back your account.') }}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@include('shared.sidebars.user')
?>