42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
<div class="card">
|
|
|
|
|
|
<h5 class="card-header">
|
|
{{__('Business')}} {{__('Übersicht')}} Berater
|
|
</h5>
|
|
|
|
|
|
{!! Form::open(['url' => route('admin_business_user_detail', [$user->id]), 'class' => 'form-horizontal', 'id'=>'']) !!}
|
|
{{ Form::hidden('user_id', $user->id ) }}
|
|
{{ Form::hidden('month', $TreeCalcBot->date->month) }}
|
|
{{ Form::hidden('year', $TreeCalcBot->date->year) }}
|
|
|
|
<div class="media align-items-center pt-3 mb-0">
|
|
{{-- <img src="assets/img/avatars/5-small.png" alt="" class="d-block ui-w-100 rounded-circle">--}}
|
|
<div class="media-body ml-4">
|
|
<h4 class="font-weight-bold mb-0">
|
|
{{ $user->account->first_name }} {{ $user->account->last_name }} <a class="font-weight-normal" href="mailto:{{ $user->email }}">{{ $user->email }}</a>
|
|
|
|
{{-- <button type="submit" class="btn btn-submit btn-secondary btn-sm float-right mr-4">{{ __('save') }}</button> --}}
|
|
|
|
</h4>
|
|
|
|
</div>
|
|
</div>
|
|
{!! Form::close() !!}
|
|
|
|
|
|
<div class="card-body">
|
|
@include('admin.business._user_detail_in')
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$( document ).ready(function() {
|
|
|
|
});
|
|
</script>
|
|
@endsection
|