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

Edit author

@csrf
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
@if ($errors->has('lname'))
{{ $errors->first('lname') }}
@endif
@if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('functions'))
{{ $errors->first('functions') }}
@endif
@if ($errors->has('mobile_no'))
{{ $errors->first('mobile_no') }}
@endif
@php $city_selection = $data->city; @endphp @include('admin.common.cities_drop_down') @if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('profile_url'))
{{ $errors->first('profile_url') }}
@endif
@if ($errors->has('profile_image'))
{{ $errors->first('profile_image') }}
@endif
Cancel
@endsection @push('script') @endpush @push('style') @endpush