9 lines
390 B
PHP
9 lines
390 B
PHP
@extends('portal::layouts.supplier')
|
|
@section('title', __('lang_v1.profile'))
|
|
@section('content')
|
|
@include('portal::partials.profile_form', [
|
|
'update_url' => action([\Modules\Portal\Http\Controllers\Supplier\ProfileController::class, 'updateProfile']),
|
|
'password_url' => action([\Modules\Portal\Http\Controllers\Supplier\ProfileController::class, 'updatePassword']),
|
|
])
|
|
@endsection
|