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

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

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

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

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

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

@endif
@foreach ($labels as $id => $label) @endforeach
{{ __('#') }} {{ __('Label Name') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$id }} {{ $label->name }} @if ($label->status == 'active') Active @else Inactive @endif {{ __('Edit') }}
@csrf
@endsection