芝麻web文件管理V1.00
编辑当前文件:/home/lekhnath/silverray.com.au/resources/views/user/my-profile.blade.php
@extends('user.layout') @section('title')
{{ $user->name }}
@endsection @section('user-dashboard')
{{ __('My Profile') }}
{{ $user->name }}
@if ($user->phone)
{{ $user->phone }}
@endif @if ($user->email)
{{ $user->email }}
@endif @if ($user->website)
{{ $user->website }}
@endif @if ($user->address)
{{ $user->address }}
@endif
@csrf
{{ __('Name') }}
{{ __('Email') }}
{{ __('Phone') }}
{{ __('Website') }}
{{ __('Location') }}
*
{{ __('Select City') }}
@foreach ($cities as $city)
id == $user->city_id ? 'selected' : '' }} value="{{ $city->id }}">{{ $city->title }}
@endforeach
{{ __('Image') }}
{{ __('Address') }}
{{ $user->address }}</textarea>
{{ __('Icon') }}
{{ __('Link') }}
{{ __('Icon') }}
{{ __('Link') }}
{{ __('Icon') }}
{{ __('Link') }}
{{ __('Icon') }}
{{ __('Link') }}
{{ __('About Us') }}
{{ $user->about }}</textarea>
{{ __('Update') }}
@csrf
{{ __('Old Password') }}
{{ __('New Password') }}
{{ __('Confirm Password') }}
{{ __('Change Password') }}
@endsection