@extends('layouts.master') @section('title', 'User') @section('content')
@csrf @method('PUT')

{{ trans('user.user_profile') }}

{{ trans('label.cancel') }}
avatar
{{ $model->name }}

{{ $model->role_name }}


{{ $model->sex == 'M' ? trans('user.male') : '' }} {{ $model->sex == 'F' ? trans('user.female') : '' }} {{ $model->sex == 'O' ? trans('user.other') : '' }}
{{ $model->address ? $model->address : trans('user.no_info') }}
{{ $model->birthday ? $model->birthday : trans('user.no_info') }}
{{ trans('user.email') }}
{{ trans('user.tel') }}:
({{ trans('user.leave_it_blank') }})
@endsection @section('script-footer') @if ($model->init_password === 0) @endif @if ($errors->any()) @endif @if (session('error')) @endif @if (session('success')) @endif @endsection