1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/users/edit.blade.php

41 lines
1.1 KiB
PHP
Raw Normal View History

2015-10-14 16:15:39 +02:00
@extends('header')
2015-03-16 22:45:25 +01:00
@section('content')
@parent
2015-10-14 16:15:39 +02:00
@include('accounts.nav', ['selected' => ACCOUNT_USER_MANAGEMENT])
2015-03-16 22:45:25 +01:00
2015-10-14 16:15:39 +02:00
{!! Former::open($url)->method($method)->addClass('warn-on-exit')->rules(array(
2015-03-16 22:45:25 +01:00
'first_name' => 'required',
'last_name' => 'required',
'email' => 'required|email',
2015-04-01 21:57:02 +02:00
)); !!}
2015-03-16 22:45:25 +01:00
@if ($user)
2015-04-01 21:57:02 +02:00
{!! Former::populate($user) !!}
2015-03-16 22:45:25 +01:00
@endif
2015-04-20 16:34:23 +02:00
<div class="panel panel-default">
2015-04-22 21:21:04 +02:00
<div class="panel-heading">
<h3 class="panel-title">{!! $title !!}</h3>
</div>
2015-10-14 19:18:19 +02:00
<div class="panel-body form-padding-right">
2015-04-20 16:34:23 +02:00
2015-04-01 21:57:02 +02:00
{!! Former::text('first_name') !!}
{!! Former::text('last_name') !!}
{!! Former::text('email') !!}
2015-03-16 22:45:25 +01:00
2015-04-20 16:34:23 +02:00
</div>
</div>
2015-04-01 21:57:02 +02:00
{!! Former::actions(
2015-10-14 16:15:39 +02:00
Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/user_management'))->appendIcon(Icon::create('remove-circle'))->large(),
2015-06-04 22:53:58 +02:00
Button::success(trans($user && $user->confirmed ? 'texts.save' : 'texts.send_invite'))->submit()->large()->appendIcon(Icon::create($user && $user->confirmed ? 'floppy-disk' : 'send'))
2015-04-01 21:57:02 +02:00
)!!}
2015-03-16 22:45:25 +01:00
2015-04-01 21:57:02 +02:00
{!! Former::close() !!}
2015-03-16 22:45:25 +01:00
2015-05-09 20:25:16 +02:00
@stop
@section('onReady')
$('#first_name').focus();
2015-03-16 22:45:25 +01:00
@stop