@extends('admin.layouts.master') @section('title', 'Add Unit') @section('content')

{{ __('Add New Unit') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@foreach ($units as $id => $unit) @endforeach
{{ __('#') }} {{ __('Unit Name') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$id }} {{ $unit->name }} @if ($unit->status == 1) Active @else Inactive @endif {{ __('Edit') }}
@csrf
@endsection