@extends('layouts.admin') @section('content-title') {{ __('functions.New Function') }} @endsection @section('content-breadcrumbs') {{ Breadcrumbs::render('admin.functions.create')}} @endsection @section('content')
{!!Form::open()->locale('functions')->post()->route('admin.function.store')!!} {!!Form::text('libelle', 'Libelle')->placeholder(__('functions.Function Label ...'))!!} {!!Form::checkbox('ppe', 'PPE', 'ppe', false)!!}
{!!Form::submit('Save')->id('my-btn')!!} {!!Form::close()!!}
@endsection