mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
30 lines
688 B
PHP
30 lines
688 B
PHP
|
@extends('accounts.nav')
|
||
|
|
||
|
@section('content')
|
||
|
@parent
|
||
|
@include('accounts.nav_advanced')
|
||
|
|
||
|
{{ Former::open($url)->method($method)->addClass('col-md-8 col-md-offset-2 warn-on-exit')->rules(array(
|
||
|
'name' => 'required',
|
||
|
)); }}
|
||
|
|
||
|
{{ Former::legend($title) }}
|
||
|
|
||
|
<p> </p>
|
||
|
|
||
|
@if ($token)
|
||
|
{{ Former::populate($token) }}
|
||
|
@endif
|
||
|
|
||
|
{{ Former::text('name') }}
|
||
|
|
||
|
<p> </p>
|
||
|
|
||
|
{{ Former::actions(
|
||
|
Button::lg_success_submit(trans('texts.save'))->append_with_icon('floppy-disk'),
|
||
|
Button::lg_default_link('company/advanced_settings/token_management', trans('texts.cancel'))->append_with_icon('remove-circle')
|
||
|
) }}
|
||
|
|
||
|
{{ Former::close() }}
|
||
|
|
||
|
@stop
|