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

{{ __('Add Maintenance Record') }}

{{ __('Fill in the device repair or maintenance details') }}

@if ($errors->any())
{{ __('Please check the following errors:') }}
@endif
@csrf
@if($machine)
{{ $machine->name }}
{{ $machine->serial_no }}
{{ $machine->company->name ?? __('None') }}
@else
@foreach($machines as $m) @endforeach
@endif
@foreach(['Repair', 'Installation', 'Removal', 'Maintenance'] as $cat) @endforeach

{{ __('Maintenance Photos') }} ({{ __('Max 3') }})

@endsection