@extends('layouts.app') @section('title', 'Edit Book | Library') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')

{{ auth()->user()->school?->name ?? 'Institution Axis' }}

@endsection @section('breadcrumb') Home / Books / Edit Book @endsection @section('navbar-right')
5
@endsection @section('content')

Edit Book

Update book details
Back
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
@error('author')
{{ $message }}
@enderror
@error('isbn')
{{ $message }}
@enderror
@error('publisher')
{{ $message }}
@enderror
@error('category')
{{ $message }}
@enderror
@error('total_copies')
{{ $message }}
@enderror
Auto-adjusted based on total copy change.
@error('location')
{{ $message }}
@enderror
Cancel
@endsection