@extends('layouts.main') @section('content')

Edit Tool

Form Edit Tool: {{ $tool->name }}
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@if($tool->img)

{{ $tool->name }}
@endif
Format: JPG, PNG, GIF. Maksimal 2MB. @if($tool->img) Kosongkan jika tidak ingin mengubah gambar. @endif
@error('img')
{{ $message }}
@enderror
@error('desc')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
Centang jika tool dapat digunakan/dipilih oleh worker
Informasi Tool
ID: {{ $tool->id }}
Dibuat: {{ $tool->created_at->format('d/m/Y H:i') }}
Diupdate: {{ $tool->updated_at->format('d/m/Y H:i') }}
Status: @if($tool->is_active) Aktif @else Nonaktif @endif
Aksi Cepat
@csrf @method('PATCH')
@csrf @method('DELETE')
@endsection