@extends('backpack::layout') @section('after_styles') @endsection @section('header')

{{ $user->first_name }} {{ $user->last_name }}

@endsection @section('content')

{{ __('base.faculty') }}: {{ !empty($faculty)? $faculty : null}}

{{ __('base.specialisation') }}: {{ !empty($specialisation)? $specialisation : null }}

{{ __('base.group.group') }}: {{ !empty($group)? $group : null }}

@include('backpack::auth.account.sidemenu')
{!! csrf_field() !!}
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->count())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif {{--
--}} {{-- @php--}} {{-- $label = trans('backpack::base.name');--}} {{-- $field = 'name';--}} {{-- @endphp--}} {{-- --}} {{-- --}} {{--
--}}
@php $label = __('base.phone_number'); $field = 'phone_number'; @endphp
@php $label = __('base.avatar'); $field = 'avatar'; @endphp
@php $label = config('backpack.base.authentication_column_name'); $field = backpack_authentication_column(); @endphp
{{ trans('backpack::base.cancel') }}
@endsection