@extends('layouts.dashboard') @section('header') @endsection @section('content')
@csrf
@if ($errors->has('avatar')) {{ $errors->first('avatar') }} @endif

@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if(!is_null(old('name'))) @else @endif
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if (!is_null(old('lastname'))) @else @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif @if(session()->has('error')) {{ __('profile.'.session()->get('error')) }} @endif
@if (!is_null(old('email'))) @else @endif
@if ($errors->has('birthday')) {{ $errors->first('birthday') }} @endif

@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@endsection @section('footer') @endsection