@extends('layouts.admin')
@section('content-title')
{{ __('functions.Edit Function') }}
@endsection
@section('content-breadcrumbs')
{{ Breadcrumbs::render('admin.functions.edit')}}
@endsection
@section('css')
@endsection
@section('content')
{!!Form::open()->locale('functions')->put()->route('admin.function.update')->fill($data)!!}
{!!Form::hidden('id')!!}
{!!Form::text('libelle', 'Libelle')->placeholder(__('functions.Function Label ...'))!!}
{!!Form::checkbox('ppe', 'PPE', 'ppe')!!}
{!!Form::submit('Save')->id('my-btn')!!}
{!!Form::close()!!}
@endsection