@extends('layouts.backend.app') @section("content")
@if(Session::has('success'))

{{Session::get('success')}}

@endif @if(Session::has('error'))

{{Session::get('error')}}

@endif

{{Auth::user()->firstname}} {{Auth::user()->lastname}}

Administrateur
{{csrf_field()}}

Paramètres de profil

Configuration de mes information de profil

Browse
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif

@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif

Paramètres de sécurité

Proteger votre compte

@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection @section('header-script') @endsection @section('footer-script') @endsection @section('custom-script') @endsection