@extends('layouts.master') @section('title',__('Edit Label')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Label')}}
{!! Form::model($label, ['method' => 'PATCH', 'action' => ['LabelController@update', $label->id]]) !!}
{!! Form::label('name', __('Name')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('name') }}
{!! Form::close() !!}
@endsection @section('script') @endsection