@extends('layouts.admin.admin') @section('title', 'Create Wrench') @section('content') @push('styles') @endpush
@include('partials.header') @include('partials.sidebar')
Inventory ManagementAdd Wrench

Add Wrench
@csrf
@if ($errors->has('serial_no')) {{ $errors->first('serial_no') }} @endif
{{--
@if ($errors->has('model_no')) {{ $errors->first('model_no') }} @endif
--}}
@if ($errors->has('part_no')) {{ $errors->first('part_no') }} @endif
@if ($errors->has('manufactured_date')) {{ $errors->first('manufactured_date') }} @endif
@if ($errors->has('currentlocation')) {{ $errors->first('currentlocation') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('next_calibration_date')) {{ $errors->first('next_calibration_date') }} @endif
@if ($errors->has('retirement_date')) {{ $errors->first('retirement_date') }} @endif
@if ($errors->has('level')) {{ $errors->first('level') }} @endif
@if ($errors->has('calib_date')) {{ $errors->first('calib_date') }} @endif
@if ($errors->has('range')) {{ $errors->first('range') }} @endif
@if ($errors->has('equipment')) {{ $errors->first('equipment') }} @endif
@if ($errors->has('accuracy')) {{ $errors->first('accuracy') }} @endif
@if ($errors->has('tolerance')) {{ $errors->first('tolerance') }} @endif
@if ($errors->has('torque1')) {{ $errors->first('torque1') }} @endif
@if ($errors->has('rec1')) {{ $errors->first('rec1') }} @endif
@if ($errors->has('left1')) {{ $errors->first('left1') }} @endif
@if ($errors->has('torque2')) {{ $errors->first('torque2') }} @endif
@if ($errors->has('rec2')) {{ $errors->first('rec2') }} @endif
@if ($errors->has('left2')) {{ $errors->first('left2') }} @endif
@if ($errors->has('torque3')) {{ $errors->first('torque3') }} @endif
@if ($errors->has('rec3')) {{ $errors->first('rec3') }} @endif
@if ($errors->has('left3')) {{ $errors->first('left3') }} @endif
@if ($errors->has('performed_by')) {{ $errors->first('performed_by') }} @endif
@if ($errors->has('supervisor')) {{ $errors->first('supervisor') }} @endif
@push('script') @endpush @stop