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