@extends('frontend.layouts.app') @section('content')
IMG
{{-- {{ Form::open(['route' => 'reset.password.post', 'class' => 'form-horizontal']) }} --}}
@csrf Welcome to S4M CMS @if (Session::has('message')) @endif

Reset Your Password

{{-- {{ Form::input('email', 'email', null, ['class' => 'input100', 'placeholder' => trans('validation.attributes.frontend.register-user.email')]) }} --}} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{-- {{ Form::input('password', 'password', null, ['class' => 'input100', 'placeholder' => 'Password']) }} --}} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- {{ Form::input('password', 'password_confirmation', null, ['class' => 'input100', 'placeholder' => 'Confirm Password']) }} --}} @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{{-- {{ Form::submit('Change Password', ['class' => 'login100-form-btn']) }} --}}
@endsection