@extends('layouts.admin') @section('content')

Profile/Information

Profile Information
@php $admin_user = auth()->user()->load('photo'); @endphp
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ csrf_field() }}

Click image to upload

@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('contact_number')) {{ $errors->first('contact_number') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
{{auth()->user()->getRoleNames()}}
@if ($errors->has('website_url')) {{ $errors->first('website_url') }} @endif
@if ($errors->has('linkedin_url')) {{ $errors->first('linkedin_url') }} @endif
@if ($errors->has('facebook_url')) {{ $errors->first('facebook_url') }} @endif
@if ($errors->has('instagram_url')) {{ $errors->first('instagram_url') }} @endif
@if ($errors->has('twitter_url')) {{ $errors->first('twitter_url') }} @endif
Cancel
@endsection @section('scripts') @include('account_settings.scripts.index') @endsection