@extends('layouts.app-admin') @section('content')

Edit User

{!! Form::model($user, ['url' => ['/update-data', $user->id_user]]) !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('level')) {{ $errors->first('level') }} @endif
@if ($errors->has('cluster')) {{ $errors->first('cluster') }} @endif
@if ($errors->has('nik')) {{ $errors->first('nik') }} @endif
@if ($errors->has('nama')) {{ $errors->first('nama') }} @endif
@if ($errors->has('gelar')) {{ $errors->first('gelar') }} @endif
@if ($errors->has('jabatan')) {{ $errors->first('jabatan') }} @endif
@if ($errors->has('alamat_ktp')) {{ $errors->first('alamat_ktp') }} @endif
@if ($errors->has('alamat_domisili')) {{ $errors->first('alamat_domisili') }} @endif
@if ($errors->has('no_hp')) {{ $errors->first('no_hp') }} @endif
{{Form::close()}}
@endsection