@extends('backend.layouts.master') @section('content')
@if (session('message'))
  • {{ session('message') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Thông tin cá nhân

@csrf
Tên tài khoản
Nhóm quyền
Họ và tên
{{--
--}}
@if ($errors->has('name'))
{{$errors->first('name')}}
@endif
Mã định danh
Email
@if ($errors->has('email'))
{{$errors->first('email')}}
@endif
Số điện thoại
{{--
--}}
@if ($errors->has('phone'))
{{$errors->first('phone')}}
@endif
Mật khẩu
Nhập lại mật khẩu
Ảnh đại diện
@endsection @section('script') @include('backend.layouts.script') @endsection