@extends('layouts.app') @section('title', 'Edit Manufacturing Location') @section('content') Edit Manufacturing Location @include('manufacturing.partials.navigation') Edit Location: {{ $location->code }} {{ $location->status_label }} @csrf @method('PUT') Location Code * @error('code') {{ $message }} @enderror Unique identifier for this location Location Name * @error('name') {{ $message }} @enderror Description {{ old('description', $location->description) }} @error('description') {{ $message }} @enderror Address {{ old('address', $location->address) }} @error('address') {{ $message }} @enderror is_active) ? 'checked' : '' }}> Active Inactive locations won't be available for allocation Update Location Cancel @endsection