72 lines
5.9 KiB
PHP
72 lines
5.9 KiB
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<section class="bg-white dark:bg-gray-900 pt-20">
|
|
<div class="py-8 px-4 mx-auto max-w-screen-xl text-center lg:py-16">
|
|
<h1 class="mb-4 text-4xl font-extrabold tracking-tight leading-none text-gray-900 md:text-5xl lg:text-6xl dark:text-white">Ubah Password</h1>
|
|
<p class="mb-8 text-lg font-normal text-gray-500 lg:text-xl sm:px-16 lg:px-48 dark:text-gray-400">Silahkan lengkapi formulir <strong>Ubah Password</strong> di bawah ini!</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="px-80 pb-20">
|
|
@if (Session::has('error'))
|
|
<div id="alert-border-2" class="flex items-center p-4 mb-4 text-red-800 border-t-4 border-red-300 bg-red-50 dark:text-red-400 dark:bg-gray-800 dark:border-red-800" role="alert">
|
|
<svg class="flex-shrink-0 w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
|
|
<path d="M10 .5a9.5 9.5 0 1 0 9.5 9.5A9.51 9.51 0 0 0 10 .5ZM9.5 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM12 15H8a1 1 0 0 1 0-2h1v-3H8a1 1 0 0 1 0-2h2a1 1 0 0 1 1 1v4h1a1 1 0 0 1 0 2Z"/>
|
|
</svg>
|
|
<div class="ms-3 text-sm font-medium">
|
|
{{ Session::get('error') }}!
|
|
</div>
|
|
<button type="button" class="ms-auto -mx-1.5 -my-1.5 bg-red-50 text-red-500 rounded-lg focus:ring-2 focus:ring-red-400 p-1.5 hover:bg-red-200 inline-flex items-center justify-center h-8 w-8 dark:bg-gray-800 dark:text-red-400 dark:hover:bg-gray-700" data-dismiss-target="#alert-border-2" aria-label="Close">
|
|
<span class="sr-only">Dismiss</span>
|
|
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
@endif
|
|
@if (Session::has('message'))
|
|
<div id="alert-border-2" class="flex items-center p-4 mb-4 text-green-800 border-t-4 border-green-300 bg-green-50 dark:text-green-400 dark:bg-gray-800 dark:border-green-800" role="alert">
|
|
<svg class="flex-shrink-0 w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
|
|
<path d="M10 .5a9.5 9.5 0 1 0 9.5 9.5A9.51 9.51 0 0 0 10 .5ZM9.5 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM12 15H8a1 1 0 0 1 0-2h1v-3H8a1 1 0 0 1 0-2h2a1 1 0 0 1 1 1v4h1a1 1 0 0 1 0 2Z"/>
|
|
</svg>
|
|
<div class="ms-3 text-sm font-medium">
|
|
{{ Session::get('message') }}.
|
|
</div>
|
|
<button type="button" class="ms-auto -mx-1.5 -my-1.5 bg-green-50 text-green-500 rounded-lg focus:ring-2 focus:ring-green-400 p-1.5 hover:bg-green-200 inline-flex items-center justify-center h-8 w-8 dark:bg-gray-800 dark:text-green-400 dark:hover:bg-gray-700" data-dismiss-target="#alert-border-2" aria-label="Close">
|
|
<span class="sr-only">Dismiss</span>
|
|
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
@endif
|
|
<form action="{{ route('pass.polmasproses') }}" method="post" class="w-full flex flex-wrap justify-between shadow-lg p-8" autocomplete="off">
|
|
@csrf
|
|
<div class="mb-6 w-full px-4">
|
|
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">*Password Lama</label>
|
|
<input type="password" id="email" class="shadow-sm bg-gray-200 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500 dark:shadow-sm-light" name="password_lama" value="{{ old('password_lama') }}">
|
|
@if ($errors->has('password_lama'))
|
|
<strong class="text-red-600 lowercase"> * {{ $errors->first('password_lama') }}</strong>
|
|
@endif
|
|
</div>
|
|
<div class="mb-6 w-full px-4">
|
|
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">*Password Baru</label>
|
|
<input type="password" id="email" class="shadow-sm bg-gray-200 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500 dark:shadow-sm-light" name="password_baru" value="{{ old('password_baru') }}">
|
|
@if ($errors->has('password_baru'))
|
|
<strong class="text-red-600 lowercase"> * {{ $errors->first('password_baru') }}</strong>
|
|
@endif
|
|
</div>
|
|
<div class="mb-6 w-full px-4">
|
|
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">*Masukkan Ulang Password Baru</label>
|
|
<input type="password" id="email" class="shadow-sm bg-gray-200 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500 dark:shadow-sm-light" name="ulangi_password_baru" value="{{ old('ulangi_password_baru') }}">
|
|
@if ($errors->has('ulangi_password_baru'))
|
|
<strong class="text-red-600 lowercase"> * {{ $errors->first('ulangi_password_baru') }}</strong>
|
|
@endif
|
|
</div>
|
|
<div class="w-full p-4">
|
|
<button type="submit" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-md px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 w-full">Simpan Perubahan</button>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
@endsection
|