@extends('backend.app') @section('content')

Kullanıcı Güncelle

@if ($errors->any())
Hata...! giriş hataları aşağıdaki gibidir.
@endif
@csrf
{{Form::label('name', 'Kullanıcı Adı', ['class' => 'col-md-4 col-form-label text-md-right'])}}
{{ Form::text('name', $user->name, ['class' => ($errors->has('name')) ? 'form-control is-invalid' : 'form-control', 'required', 'autofocus', 'autocomplete'=>'name']) }} @error('name') {{ $message }} @enderror
{{Form::label('email', 'E-Mail Adresi', ['class' => 'col-md-4 col-form-label text-md-right'])}}
{{ Form::email('email', $user->email, ['class' => ($errors->has('email')) ? 'form-control is-invalid' : 'form-control', 'required', 'autofocus', 'autocomplete'=>'email']) }} @error('email') {{ $message }} @enderror
{{Form::label('yetki', 'Yetki', ['class' => 'col-md-4 col-form-label text-md-right'])}}
Yok : {{ Form::radio('yetki', '0', ($user->yetki==0) ? 'true' : '') }} Var : {{ Form::radio('yetki', '1', ($user->yetki==1) ? 'true' : '') }} @error('yetki') {{ $message }} @enderror
{{Form::label('aktif', 'Aktif', ['class' => 'col-md-4 col-form-label text-md-right'])}}
Hayır : {{ Form::radio('aktif', '0', ($user->aktif==0) ? 'true' : '') }} Evet : {{ Form::radio('aktif', '1', ($user->aktif==1) ? 'true' : '') }} @error('yetki') {{ $message }} @enderror
{{ Form::submit('Güncelle',['class'=>'btn btn-primary']) }}
@endsection