@extends('layouts.app') @section('title', $app_setting['name'] . ' | User Edit') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Edit User
@csrf @method('PUT')
is_active) checked @endif name="is_active" class="form-check-input" type="checkbox">
is_admin) checked @endif name="is_admin" class="form-check-input" type="checkbox">
@endsection