@extends('layouts.app') @section('content')
Register
{{ csrf_field() }}
@if ($errors->has('nickname')) {{ $errors->first('nickname') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! FormField::radios('gender_id', [1 => trans('app.male'), 2 => trans('app.female')], ['label' => false]) !!}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection