@extends('admin.layout.base') @section('title', 'Update Profile ') @section('content')
@lang('admin.account.update_profile')
{{csrf_field()}}
@lang('admin.name')
@lang('admin.email')
@lang('user.profile.language')
@php($language=get_all_language())
@foreach($language as $lkey=>$lang)
language==$lkey) selected @endif>{{$lang}}
@endforeach
@lang('admin.picture')
@if(isset(Auth::guard('admin')->user()->picture))
@endif
@lang('admin.account.update_profile')
@endsection