MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/liftcincy.imenso.co/resources/views/auth/passwords/email.blade.php
@extends('frontend.layouts.layout_page')

@section('pageTitle')
<title>{{ trans('panel.site_title') }} {{ trans('global.reset_password') }}</title>
@endsection
@section('style')
<link href="{{ asset('assets/css/icons.css')}}" rel="stylesheet">
@endsection
@section('content')
    <section class="burger p-relative auth">
        <div class="ccontainer">        
            <div class="crow g-0">
                <div class="ccol ccol-lg-3 ccol-md-4 ccol-sm-4 ccol-6 mx-auto py-0">
                    <h2 class="heading_2 text-black">{{ trans('global.reset_password') }}</h2>
                    <hr class="mt-1 mb-2" />          
                    @if(session()->has('success') || session()->has('status'))
                        <div class="alert alert-success">
                            {{ session()->get('status') }}
                        </div>
                    @endif
                    @if(session()->has('error'))
                        <div class="alert alert-danger">
                            {{ session()->get('error') }}
                        </div>
                    @endif
                    @if(session('message'))
                        <div class="alert alert-success" role="alert">
                            {{ session('message') }}
                        </div>
                    @endif
                    @if($errors->count() > 0)
                        <div class="alert alert-danger">
                            <ul class="list-unstyled">
                                @foreach($errors->all() as $error)
                                    <li>{{ $error }}</li>
                                @endforeach
                            </ul>
                        </div>
                    @endif
                    <form method="POST" class="row g-3" action="{{ route('password.email') }}">
                        
                        {{ csrf_field() }}
                        <div class="form_fld">
                            <label>Email</label>
                            <input type="email" name="email" placeholder="{{ trans('global.login_email') }}" class="fld-control {{ $errors->has('email') ? ' is-invalid' : '' }}">

                            @if($errors->has('email'))
                                <div class="invalid-feedback">
                                    {{ $errors->first('email') }}
                                </div>
                            @endif
                        </div>

                        <div class="d-flex flex-justify-between small flex-item-align-center">
                            <a href="{{ route('login') }}" class="cbtn cbtn-text-secondary">Sign In</a>
                            <a href="{{ route('frontend.checkout') }}" class="cbtn cbtn-text-primary">Sign Up</a>
                        </div>
                        <div class="mt-3">
                            <div class="d-flex flex-justify-between small flex-item-align-center">
                                <button class="cbtn cbtn-primary" type="submit">{{ trans('global.reset_password') }} </button>
                                <div>
                                    <a href="{{ route('partner_register') }}" class="cbtn cbtn-text-secondary">Nonprofit Sign Up</a>
                                </div>
                            </div>
                        </div>
                    </form>
                </div>
            </div>
        </div>
    </section>
    
@endsection