1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!--
- Copyright (C) 2022 Echedey López Romero <elr@disroot.org>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- -->
- @extends('layouts.app')
- @section('content')
- <div class="container">
- <div class="row justify-content-center">
- <div class="col-md-8">
- <div class="card">
- <div class="card-header">Profile edition</div>
- <div class="card-body">
- <form class="container px-0" action="{{ route('profiles.update', $user->id) }}" method="POST" enctype="multipart/form-data">
- @csrf
- @method('PUT')
- <div class="row mb-3">
- <label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
- <div class="col-md-6">
- <input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') ? old('email') : $user->email }}" autocomplete="email" />
- @error('email')
- <span class="invalid-feedback" role="alert">
- <strong>{{ $message }}</strong>
- </span>
- @enderror
- </div>
- </div>
- <div class="row mb-3">
- <label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label>
- <div class="col-md-6">
- <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" value="{{ old('password') }}" autocomplete="new-password" />
- @error('password')
- <span class="invalid-feedback" role="alert">
- <strong>{{ $message }}</strong>
- </span>
- @enderror
- </div>
- </div>
- <div class="row mb-3">
- <label for="password-confirm" class="col-md-4 col-form-label text-md-end">{{ __('Confirm Password') }}</label>
- <div class="col-md-6">
- <input id="password-confirm" type="password" class="form-control" name="password_confirmation" autocomplete="new-password" />
- </div>
- </div>
- <div class="row mb-3">
- <label for="image" class="col-md-4 col-form-label text-md-end">{{ __('Image') }}</label>
- <div class="col-md-6">
- <input id="image" type="file" class="form-control @error('image') is-invalid @enderror" name="image" />
- @error('image')
- <span class="invalid-feedback" role="alert">
- <strong>{{ $message }}</strong>
- </span>
- @enderror
- </div>
- </div>
-
- <div class="row mb-3">
- <span class="col-md-4 text-md-end">{{ __('Previous image') }}</span>
- <img src="{{ $user->image }}" class="col-md-4" alt="{{ $user->name }}"/>
- </div>
- <div class="row">
- <div class="col-md-8 offset-md-4">
- <button type="submit" class="btn btn-primary">Modify</button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
|