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

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

{!! Form::open(['method' => 'POST', 'action' => 'LabelController@store']) !!}
{!! Form::label('name', __('adminstaticwords.Name')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Please Enter Label name')]) !!} {{ $errors->first('name') }}
{!! Form::close() !!}
@endsection