@extends('frontend.layouts.app') @section('title') {{$$module_name_singular->name}}'s Profile @endsection @section('content') {{$$module_name_singular->name}} @auth @if(auth()->user()->id == $$module_name_singular->id) Show @endif @endauth Username:{{$$module_name_singular->username}} @if ($$module_name_singular->email_verified_at == null) Confirm Email @endif @include('frontend.includes.messages') {{ html()->form('PATCH', route('frontend.users.changePasswordUpdate', auth()->user()->username))->class('form-horizontal')->open() }} {{ html()->label(__('labels.backend.users.fields.password'))->class('col-md-3 form-control-label')->for('password') }} {{ html()->password('password') ->class('form-control') ->placeholder(__('labels.backend.users.fields.password')) ->required() }} {{ html()->label(__('labels.backend.users.fields.password_confirmation'))->class('col-md-3 form-control-label')->for('password_confirmation') }} {{ html()->password('password_confirmation') ->class('form-control') ->placeholder(__('labels.backend.users.fields.password_confirmation')) ->required() }} {{ html()->button($text = " Save", $type = 'submit')->class('btn btn-success') }} user()->username) }}" class="btn btn-warning" data-toggle="tooltip" title="{{__('labels.backend.cancel')}}"> Back {{ html()->closeModelForm() }} @endsection
Username:{{$$module_name_singular->username}}
Confirm Email