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

@can('label.view') reply @endcan {{__('Edit Label')}}

{!! Form::model($label, ['method' => 'PATCH', 'action' => ['LabelController@update', $label->id]]) !!}
{!! Form::label('name', __('adminstaticwords.Name')) !!}

- {{__('adminstaticwords.PleaseEnterYourName')}}

{!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('name') }}
{!! Form::close() !!}
@endsection