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

{{ __('Edit Label') }}

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

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

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

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

@endif
@endsection