Viewing file: edit.blade.php (9.21 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.app', ['title' => __('User Profile')])
@section('content') @include('users.partials.header', [ 'title' => "", ])
<div class="container-fluid mt--7"> <div class="row"> <div class="col-xl-12 order-xl-1"> <div class="card bg-secondary shadow"> <div class="card-header bg-white border-0"> <div class="row align-items-center"> <h3 class="col-12 mb-0">{{ __('Edit Profile') }}</h3> </div> </div> <div class="card-body"> <form method="post" enctype="multipart/form-data" action="{{ route('profile.update') }}" autocomplete="off"> @csrf @method('put')
<h6 class="heading-small text-muted mb-4">{{ __('User information') }}</h6>
@if (session('status')) <div class="alert alert-success alert-dismissible fade show" role="alert"> {{ session('status') }} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif
<div class="pl-lg-4"> @include('partials.fields',['fields'=>$appFields]) <div class="form-group{{ $errors->has('name') ? ' has-danger' : '' }}"> <label class="form-control-label" for="input-name">{{ __('Name') }}</label> <input type="text" name="name" id="input-name" class="form-control form-control-alternative{{ $errors->has('name') ? ' is-invalid' : '' }}" placeholder="{{ __('Name') }}" value="{{ old('name', auth()->user()->name) }}" required autofocus>
@if ($errors->has('name')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('name') }}</strong> </span> @endif </div> <div class="form-group{{ $errors->has('email') ? ' has-danger' : '' }}"> <label class="form-control-label" for="input-email">{{ __('Email') }}</label> <input type="email" name="email" id="input-email" class="form-control form-control-alternative{{ $errors->has('email') ? ' is-invalid' : '' }}" placeholder="{{ __('Email') }}" value="{{ old('email', auth()->user()->email) }}" required>
@if ($errors->has('email')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('email') }}</strong> </span> @endif </div> <div class="form-group{{ $errors->has('phone') ? ' has-danger' : '' }}"> <label class="form-control-label" for="input-phone">{{ __('Phone') }}</label> <input type="text" name="phone" id="input-phone" class="form-control form-control-alternative{{ $errors->has('phone') ? ' is-invalid' : '' }}" placeholder="{{ __('Phone') }}" value="{{ old('phone', auth()->user()->phone) }}" required>
@if ($errors->has('phone')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('phone') }}</strong> </span> @endif </div>
<div class="text-center"> <button type="submit" class="btn btn-success mt-4">{{ __('Save') }}</button> </div> </div> </form> <hr class="my-4" /> <form method="post" action="{{ route('profile.password') }}" autocomplete="off"> @csrf @method('put')
<h6 class="heading-small text-muted mb-4">{{ __('Password') }}</h6>
@if (session('password_status')) <div class="alert alert-success alert-dismissible fade show" role="alert"> {{ session('password_status') }} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif
<div class="pl-lg-4"> <div class="form-group{{ $errors->has('old_password') ? ' has-danger' : '' }}"> <label class="form-control-label" for="input-current-password">{{ __('Current Password') }}</label> <input type="password" name="old_password" id="input-current-password" class="form-control form-control-alternative{{ $errors->has('old_password') ? ' is-invalid' : '' }}" placeholder="{{ __('Current Password') }}" value="" required>
@if ($errors->has('old_password')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('old_password') }}</strong> </span> @endif </div> <div class="form-group{{ $errors->has('password') ? ' has-danger' : '' }}"> <label class="form-control-label" for="input-password">{{ __('New Password') }}</label> <input type="password" name="password" id="input-password" class="form-control form-control-alternative{{ $errors->has('password') ? ' is-invalid' : '' }}" placeholder="{{ __('New Password') }}" value="" required>
@if ($errors->has('password')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('password') }}</strong> </span> @endif </div> <div class="form-group"> <label class="form-control-label" for="input-password-confirmation">{{ __('Confirm New Password') }}</label> <input type="password" name="password_confirmation" id="input-password-confirmation" class="form-control form-control-alternative" placeholder="{{ __('Confirm New Password') }}" value="" required> </div>
<div class="text-center"> <button type="submit" class="btn btn-success mt-4">{{ __('Change password') }}</button> </div> </div> </form> @if(auth()->user()->hasRole('owner')||auth()->user()->hasRole('client')) <hr class="my-4" /> <div class="pl-lg-4"> <div class="text-center"> <form method="post" action="{{ route('user.destroy', auth()->user()) }}"> @csrf @method('delete') <button id="close_acc_btn" type="button" class="btn btn-danger mt-4"> <i id="loadbtn" class="fa fa-spinner fa-spin"></i> {{ __('Close Account') }} </button> </form> </div> </div> @endif </div> </div> </div> </div>
@include('layouts.footers.auth') </div> @endsection
@section('js') <script> $('#loadbtn').hide(); $('#close_acc_btn').on('click', function() { if (confirm('{{ __("Are you sure you want to cancel the account and all their data?") }}')) { this.parentElement.submit(); $('#loadbtn').show(); } else { return false; } }); </script> @endsection
|