@extends('layouts.app') @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{$user->name}}
@csrf
Please upload a valid image file. Size of image should not be more than 2MB.
@endsection