ultimatepos/Modules/Portal/Resources/views/customer/profile/edit.blade.php

9 lines
390 B
PHP

@extends('portal::layouts.customer')
@section('title', __('lang_v1.profile'))
@section('content')
@include('portal::partials.profile_form', [
'update_url' => action([\Modules\Portal\Http\Controllers\Customer\ProfileController::class, 'updateProfile']),
'password_url' => action([\Modules\Portal\Http\Controllers\Customer\ProfileController::class, 'updatePassword']),
])
@endsection