@extends('layouts.admin') @section('title', $user ? 'Edit User' : 'Tambah User') @push('breadcrumb') @endpush @section('content')
@csrf @if($user) @method('PUT') @endif
{{ $user ? 'Edit User' : 'User Baru' }}
@if($user)
Kosongkan jika tidak ingin mengubah password.
@endif
@endsection