@extends('../nn_cms/pages/profile') @section('tab_content')
{!! Form::model($users,['method' => 'PATCH', 'url' => getCurrentLocale() . '/manager/user/profile/'.$users->id.'/update/info']) !!}
{!! Form::label('name', trans('general.fclbUserName').':', ['class' => 'control-label']) !!} {!! Form::text('name', null, ['class' => 'form-control']) !!} @if($errors->has('name'))
{{ $errors->default->get('name')[0] }}
@endif
{!! Form::label('surname', trans('general.fclbUserSurname').':', ['class' => 'control-label']) !!} {!! Form::text('surname', null, ['class' => 'form-control']) !!} @if($errors->has('surname'))
{{ $errors->default->get('surname')[0] }}
@endif
{!! Form::close() !!} {!! Form::model($users,['method' => 'PATCH', 'url' => getCurrentLocale() . '/manager/user/profile/'.$users->id.'/update/info_mail', 'class' => 'margin-top-20']) !!}
{!! Form::label('email', trans('general.fclbEmail').':', ['class' => 'control-label']) !!} {!! Form::email('email', null, ['class' => 'form-control']) !!} @if($errors->has('email'))
{{ $errors->default->get('email')[0] }}
@endif
{!! Form::close() !!}
@stop