@extends('layouts.admin', [ 'page_header' => 'Edit Label' ]) @section('title',__('Edit Label')) @section('content')

reply {{__('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