@extends('layouts.admin') @section('title') Admin | Admin user @endsection @section('content')

Admin user/@if(!empty($user)) Update @else Create @endif

Admin user @if(!empty($user)) Update @else Create @endif
{{ csrf_field() }} @if(!empty($user)) @method('PUT') @endif

Click image to upload

@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
@if ($errors->has('tags')) {{ $errors->first('tags') }} @endif
@if ($errors->has('bio')) {{ $errors->first('bio') }} @endif
@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