@extends('layouts.app') @section('title', __('New Mailbox')) @section('content')

{{ __('Create a mailbox') }}

{{ __('Customers email this address for help (e.g. support@domain.com)') }}

@include('partials/flash_messages')
{{ csrf_field() }}
@include('partials/field_error', ['field'=>'email'])

{{ __('You can edit this later') }}

@include('partials/field_error', ['field'=>'name'])
@if (\Module::isActive('satratings'))
@include('partials/field_error', ['field'=>'ratings'])
@endif
@foreach ($users as $user)
@endforeach
@include('partials/field_error', ['field'=>'users'])
{{ __('Cancel') }}
@endsection @section('javascript') @parent permissionsInit(); @endsection