@extends('layouts.master') @section('title',__('Create Label')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Label')}}
{!! Form::open(['method' => 'POST', 'action' => 'LabelController@store']) !!}
{!! Form::label('name', __('Name')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Please Enter Label name')]) !!} {{ $errors->first('name') }}
{!! Form::close() !!}
@endsection @section('script') @endsection