@extends('layouts.main') @section('title') {{ __('Change Profile') }} @endsection @section('content')

{{ __('Change Profile') }}

{{ Form::open(['url' => route('updateprofile'), 'id' => '#form', 'files' => true]) }}
{{-- Name --}}
{{-- Email --}}
{{-- Profile Image --}}
@if (Auth::user()->getRawOriginal('profile'))
@endif
{{-- Change Button --}}
{!! Form::close() !!}
@endsection @section('script') @endsection