@extends('admin.layouts.app') @section('page_tab_title' ,"Profile") @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) × {{ $error }} @endforeach @endif @if(session()->has('success')) × {{ session()->get('success') }} @endif Edit Profile @csrf First name * @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif Last name * @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif Email address * Phone number @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif Profile picture Choose File No file chosen... @if($admin->profile_picture) {{-- --}} @else @endif Submit Cancel