@extends('layout.layout') @section('content') @include('custom::component.reply-btn', ['url' => route('user.profile.show')])
{{csrf_field()}} {{-- 帳號 --}} @component('custom::components/form/form-group', ['id' => 'uid']) @slot('label') ※ 帳號 @endslot 只能數字/小寫/底線 @endcomponent {{-- 姓名 --}} @component('custom::components/form/form-group', ['id' => 'name']) @slot('label') ※ 姓名 @endslot @endcomponent {{-- 電子信箱 --}} @component('custom::components/form/form-group', ['id' => 'email']) @slot('label') ※ 電子信箱 @endslot @endcomponent {{-- 行動電話 --}} @component('custom::components/form/form-group', ['id' => 'phone']) @slot('label') ※ 行動電話 @endslot @endcomponent {{-- Submit --}}
@endsection