@extends('layouts.app') @section('title', __('user.designation')) @section('content')

@lang( 'user.designation' ) @lang( 'user.designation.edit' )

{!! Form::open(['url' => action('DesignationController@update', [$designation->id]), 'method' => 'PUT', 'id' => 'update_designation']) !!}
{!! Form::label('is_active', __( 'user.designation.status' ) . ':*') !!} {{-- {!! Form::checkbox('is_active', $designation->is_active , [ 'class' => 'input-icheck']); !!} {{ __( 'Active designation' ) }} --}} is_active == 1 ? ' checked' : '') }}>
{!! Form::label('name', __( 'user.designation.name' ) . ':*') !!} {!! Form::text('name', $designation->name, ['class' => 'form-control', 'required', 'placeholder' => __( 'user.designation.name' )]) !!}
{!! Form::close() !!}
@stop