@extends('layouts.app') @section('title', __('User Setup Wizard')) @section('content')
@include('auth/banner')
@if (!$user)

{{ __('User Setup Problem') }}

{{ __('No invite was found. Please contact your administrator to have a new invite email sent.') }}

@else

{{ __('Welcome to :company_name, :first_name!', ['company_name' => App\Option::getCompanyName(), 'first_name' => $user->first_name]) }}

{{ __("Let's setup your profile.") }}

{{ csrf_field() }}
@include('partials/field_error', ['field'=>'email'])
{{ __('Your password must be at least 8 characters') }}
@include('partials/field_error', ['field'=>'password'])
@include('partials/field_error', ['field'=>'password_confirmation'])
@action('user.setup.before_job_title', $user)
@include('partials/field_error', ['field'=>'job_title'])
@include('partials/field_error', ['field'=>'phone'])
@include('partials/field_error', ['field'=>'timezone'])
@include('partials/field_error', ['field'=>'time_format'])
@if ($user->photo_url) @endif

{{ __('Only visible in :app_name.', ['app_name' => \Config::get('app.name')]) }} {{ __('Image will be re-sized to 200x200. JPG, GIF, PNG accepted.') }}

@include('partials/field_error', ['field'=>'photo_url'])
@endif
@endsection @section('javascript') @parent userProfileInit(); @endsection