@extends('layout.admin') @section('template_title') {{ __('Sửa vai trò của tài khoản ' . $user->username) }} @endsection @php $method = 'PATCH'; @endphp @section('content')
@includeif('partials.errors')
{{ __('Sửa vai trò') }}
{{ method_field($method) }} @csrf @method($method)
@if ($errors->has('username'))
{{ $errors->first('name') }}
@endif
@endsection