@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title',trans('lang.label_table')) @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => ['labels.update', $editlabel[0]->id], 'method' => 'patch']) !!}
{!! Form::label('label_name', trans("lang.label_name"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('label_name',$editlabel[0]->label_name, ['class' => 'form-control','placeholder'=> trans("lang.label_name_placeholder")]) !!}
{{ trans("lang.label_name_help") }}
{!! Form::label('status', trans("lang.status"), ['class' => 'col-5 control-label text-right']) !!}
{{ trans("lang.status") }}
{{trans('lang.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush