@extends('layouts.contentLayoutMaster')
@section('title', 'مشاهدة حساب ')
@php
$breadcrumbs = [[['link' => route('users.index'), 'name' => "حسابات المستخدمين"], [ 'name' => "مشاهدة حساب "]],['title' => 'مشاهدة حساب']];
@endphp
@section('vendor-style')
@endsection
@section('page-style')
{{-- Page Css files --}}
@endsection
@section('content')
@component('components.forms.formCard',['title' => sprintf('مشاهدة حساب المستخدم %s', $user->getFullName()) ])
{{ Form::model($user ,['route' => ['users.update', $user->id],'method'=> 'PUT' , 'class' => 'row','id' => 'adminform']) }}